From 9f092b70f0fd2332b943faefa4d0d56d1ad928c1 Mon Sep 17 00:00:00 2001 From: XXXXRT666 <157766680+XXXXRT666@users.noreply.github.com> Date: Mon, 12 May 2025 18:09:32 +0100 Subject: [PATCH] WIP --- .github/build_windows_packages.ps1 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/build_windows_packages.ps1 b/.github/build_windows_packages.ps1 index d8abf347..0e7af41c 100644 --- a/.github/build_windows_packages.ps1 +++ b/.github/build_windows_packages.ps1 @@ -64,7 +64,9 @@ Invoke-WebRequest $pyUrl -OutFile $zst Get-ChildItem Get-ChildItem $tmpDir & "C:\Program Files\7-Zip\7z.exe" e $zst -o$tmpDir -aoa | Out-Null +Get-ChildItem $tmpDir $tar = Get-ChildItem "$tmpDir" -Filter "*.tar" | Select-Object -First 1 +Get-ChildItem $tmpDir & "C:\Program Files\7-Zip\7z.exe" x $tar.FullName -o$tmpDir\extracted -aoa | Out-Null Move-Item "$tmpDir\extracted\python\install" "$srcDir\runtime"