From 56544d48403bf2df64308907542eabc41a8f34f8 Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Fri, 16 May 2025 05:11:05 +0200 Subject: [PATCH] fix(windows): verbose output on Windows (#339) --- installers/win-setup-template.ps1 | 5 ----- 1 file changed, 5 deletions(-) diff --git a/installers/win-setup-template.ps1 b/installers/win-setup-template.ps1 index cb9b561..4f7b5f1 100644 --- a/installers/win-setup-template.ps1 +++ b/installers/win-setup-template.ps1 @@ -126,11 +126,6 @@ if ($LASTEXITCODE -ne 0) { Throw "Error happened during Python installation" } -# print out all files in $PythonArchPath -Write-Host "Files in $PythonArchPath" -$files = Get-ChildItem -Path $PythonArchPath -File -Recurse -Write-Output $files - if ($IsFreeThreaded) { # Delete python.exe and create a symlink to free-threaded exe Remove-Item -Path "$PythonArchPath\python.exe" -Force