core/src/collection/pwsh.ps1

22 lines
412 B
PowerShell
Raw Normal View History

2026-07-11 20:44:43 +02:00
# Copyright (c) The Geekeey Authors
# SPDX-License-Identifier: EUPL-1.2
using module ../Geekeey.Build.Pwsh.psd1
Set-StrictMode -Version Latest
$ErrorActionPreference = 'Stop'
$ProgressPreference = 'Ignore'
$PSNativeCommandUseErrorActionPreference = $true
$script = Get-ActionInput -Name "script" -Required
try
{
Invoke-Expression $script
}
catch
{
Write-ActionError "Script failed: $_"
exit 1
}