From 2f93389231ebc090ed43f9d0058f94fbd640ffca Mon Sep 17 00:00:00 2001 From: Matthieu Darbois Date: Tue, 10 Mar 2026 16:47:45 +0100 Subject: [PATCH] fix: do not include CPython source archive in unix artefacts (#287) --- builders/nix-python-builder.psm1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builders/nix-python-builder.psm1 b/builders/nix-python-builder.psm1 index 8a53fe0..010cdba 100644 --- a/builders/nix-python-builder.psm1 +++ b/builders/nix-python-builder.psm1 @@ -73,7 +73,7 @@ class NixPythonBuilder : PythonBuilder { $sourceUri = $this.GetSourceUri() Write-Host "Sources URI: $sourceUri" - $archiveFilepath = Download-File -Uri $sourceUri -OutputFolder $this.WorkFolderLocation + $archiveFilepath = Download-File -Uri $sourceUri -OutputFolder $this.TempFolderLocation $expandedSourceLocation = Join-Path -Path $this.TempFolderLocation -ChildPath "SourceCode" New-Item -Path $expandedSourceLocation -ItemType Directory