You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/test/integration/targets/win_script/files/test_script_with_errors.ps1

9 lines
144 B
PowerShell

# Test script to make sure we handle non-zero exit codes.
trap {
Write-Error -ErrorRecord $_
exit 1;
}
throw "Oh noes I has an error"