Explorar el Código

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

fix dll compress in windows building
Daniel Hiltgen hace 1 año
padre
commit
dfe330fa1c
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      llm/generate/gen_windows.ps1

+ 1 - 1
llm/generate/gen_windows.ps1

@@ -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
     }
     }