Public/System/Approve-LastExitCode.ps1
function Approve-LastExitCode { [CmdletBinding()] [CmdLetTag()] param ( ) begin { } process { if ($lastexitcode){ throw } } end { } } |
function Approve-LastExitCode { [CmdletBinding()] [CmdLetTag()] param ( ) begin { } process { if ($lastexitcode){ throw } } end { } } |