Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
XpandPwsh
0.36.3
Public/System/Approve-LastExitCode.ps1
function
Approve-LastExitCode
{
[
CmdletBinding
(
)
]
param
(
)
begin
{
}
process
{
if
(
$lastexitcode
)
{
throw
}
}
end
{
}
}