Unverified Commit dfe330fa authored by Daniel Hiltgen's avatar Daniel Hiltgen Committed by GitHub
Browse files

Merge pull request #3488 from mofanke/fix-windows-dll-compress

fix dll compress in windows building
parents 483b81a8 4de01267
...@@ -146,7 +146,7 @@ function compress { ...@@ -146,7 +146,7 @@ function compress {
} }
write-host "Compressing dlls..." write-host "Compressing dlls..."
$binaries = dir "${script:buildDir}/bin/*.dll" $dlls = dir "${script:buildDir}/bin/*.dll"
foreach ($file in $dlls) { foreach ($file in $dlls) {
& "$script:GZIP" --best -f $file & "$script:GZIP" --best -f $file
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment