Skip to content

Commit

Permalink
Update nix-python-builder.psm1
Browse files Browse the repository at this point in the history
  • Loading branch information
mayeut committed May 19, 2024
1 parent 48c030b commit 27a0aca
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions builders/nix-python-builder.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -113,9 +113,9 @@ class NixPythonBuilder : PythonBuilder {

Write-Debug "make Python $($this.Version)-$($this.Architecture) $($this.Platform)"
$buildOutputLocation = New-Item -Path $this.WorkFolderLocation -Name "build_output.txt" -ItemType File
Execute-Command -Command "make 2>&1 | tee $buildOutputLocation" -ErrorAction Continue
Execute-Command -Command "make install" -ErrorAction Continue

Execute-Command -Command "make 2>&1 | tee $buildOutputLocation"
Execute-Command -Command "make install"

Write-Debug "Done; Make log location: $buildOutputLocation"
}
Expand Down

0 comments on commit 27a0aca

Please sign in to comment.