From 4de0126719596f54a93d866df802c0b3c6d0b2b8 Mon Sep 17 00:00:00 2001 From: mofanke Date: Thu, 4 Apr 2024 21:27:33 +0800 Subject: [PATCH] fix dll compress in windows building --- llm/generate/gen_windows.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llm/generate/gen_windows.ps1 b/llm/generate/gen_windows.ps1 index f8f2997d..c1d67990 100644 --- a/llm/generate/gen_windows.ps1 +++ b/llm/generate/gen_windows.ps1 @@ -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 }