From 854f677e850bb087f66c8cda384d07a6463c66e6 Mon Sep 17 00:00:00 2001 From: Kyle Altendorf Date: Mon, 11 Aug 2025 11:03:06 -0400 Subject: [PATCH 1/2] Create python.ps1 --- python.ps1 | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 python.ps1 diff --git a/python.ps1 b/python.ps1 new file mode 100644 index 000000000000..ddd6fc18982e --- /dev/null +++ b/python.ps1 @@ -0,0 +1,10 @@ +$ErrorActionPreference = "Stop" + +Write-Output "we're inside python.ps1" + +exit 1 + +$parameters = [System.Collections.ArrayList]$args +& python3 @parameters + +exit $LASTEXITCODE From 68e548780bff3edf89bcf3230d713a436881b59f Mon Sep 17 00:00:00 2001 From: Kyle Altendorf Date: Mon, 11 Aug 2025 14:44:58 -0400 Subject: [PATCH 2/2] other way --- python.ps1 => python3.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename python.ps1 => python3.ps1 (64%) diff --git a/python.ps1 b/python3.ps1 similarity index 64% rename from python.ps1 rename to python3.ps1 index ddd6fc18982e..60c0b664e290 100644 --- a/python.ps1 +++ b/python3.ps1 @@ -1,10 +1,10 @@ $ErrorActionPreference = "Stop" -Write-Output "we're inside python.ps1" +Write-Output "we're inside python3.ps1" exit 1 $parameters = [System.Collections.ArrayList]$args -& python3 @parameters +& python @parameters exit $LASTEXITCODE