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

fix dll compress in windows building
This commit is contained in:
Daniel Hiltgen 2024-04-04 16:12:13 -07:00 committed by GitHub
commit dfe330fa1c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -146,7 +146,7 @@ function compress {
}
write-host "Compressing dlls..."
$binaries = dir "${script:buildDir}/bin/*.dll"
$dlls = dir "${script:buildDir}/bin/*.dll"
foreach ($file in $dlls) {
& "$script:GZIP" --best -f $file
}