Skip to content

Commit

Permalink
fixup: remove quotes from bare envvars
Browse files Browse the repository at this point in the history
  • Loading branch information
coloursofnoise committed Aug 30, 2021
1 parent 9139bc8 commit 28cbef4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions azure-pipelines-postbuild.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ dotnet $env:AGENT_TOOLSDIRECTORY/DepotDownloader.dll -app 504230 -beta opengl -u

Write-Output "Applying Everest patch"
Copy-Item -Path "$env:BUILD_ARTIFACTSTAGINGDIRECTORY/main/*" -Destination $LIB_STRIPPED -Recurse
Start-Process -FilePath "mono" -ArgumentList "Miniinstaller.exe" -WorkingDirectory "$LIB_STRIPPED"
Start-Process -FilePath "mono" -ArgumentList "Miniinstaller.exe" -WorkingDirectory $LIB_STRIPPED

Write-Output "Generating stripped files"
$files = Get-ChildItem -Path $LIB_STRIPPED* -Include *.dll,*.exe
Expand All @@ -53,6 +53,6 @@ Write-Output "Building lib-stripped artifact"
$compress = @{
Path = "$LIB_STRIPPED/*.dll", "$LIB_STRIPPED/*.exe"
CompressionLevel = "Optimal"
DestinationPath = "$ZIP"
DestinationPath = $ZIP
}
Compress-Archive @compress

0 comments on commit 28cbef4

Please sign in to comment.