fix: do not include CPython source archive in unix artefacts (#287)

This commit is contained in:
Matthieu Darbois
2026-03-10 16:47:45 +01:00
committed by GitHub
parent 922a545faa
commit 2f93389231

View File

@@ -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