debug issue with macOS

This commit is contained in:
Maxim Lobanov 2020-04-23 23:04:46 +03:00
parent f7ec7329ac
commit 72f1b60dd7
2 changed files with 3 additions and 2 deletions

View File

@ -44,6 +44,7 @@ class macOSPythonBuilder : NixPythonBuilder {
} else {
$configureString += " --with-openssl=/usr/local/opt/openssl"
}
Write-Host $configureString
Execute-Command -Command $configureString
}

View File

@ -120,8 +120,8 @@ class NixPythonBuilder : PythonBuilder {
[void] CopyBuildResults() {
$buildFolder = $this.GetFullPythonToolcacheLocation()
Get-ChildItem $buildFolder -Depth 2
Copy-Item -Path "$buildFolder/*" -Destination $this.WorkFolderLocation
Get-ChildItem $buildFolder -Depth 2 | ForEach-Object { Write-Host $_.FullName }
Move-Item -Path "$buildFolder/*" -Destination $this.WorkFolderLocation
}
[void] ArchiveArtifact() {