We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5ae9df commit 218e7b1Copy full SHA for 218e7b1
tools/appveyor.psm1
@@ -91,7 +91,7 @@ function Invoke-AppveyorFinish {
91
$stagingDirectory = (Resolve-Path ..).Path
92
$zipFile = Join-Path $stagingDirectory "$(Split-Path $pwd -Leaf).zip"
93
Add-Type -AssemblyName 'System.IO.Compression.FileSystem'
94
- [System.IO.Compression.ZipFile]::CreateFromDirectory($pwd, $zipFile)
+ [System.IO.Compression.ZipFile]::CreateFromDirectory((Join-Path $pwd 'out'), $zipFile)
95
@(
96
# You can add other artifacts here
97
(Get-ChildItem $zipFile)
0 commit comments