diff --git a/python3.ps1 b/python3.ps1 new file mode 100644 index 000000000000..60c0b664e290 --- /dev/null +++ b/python3.ps1 @@ -0,0 +1,10 @@ +$ErrorActionPreference = "Stop" + +Write-Output "we're inside python3.ps1" + +exit 1 + +$parameters = [System.Collections.ArrayList]$args +& python @parameters + +exit $LASTEXITCODE