From d62cc8d62cef8c457b5260475ffdf476d2eae8bb Mon Sep 17 00:00:00 2001 From: Richard Hansen Date: Thu, 12 May 2022 20:36:29 -0400 Subject: [PATCH] Windows build: Don't exclude `var` --- src/bin/buildForWindows.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/buildForWindows.sh b/src/bin/buildForWindows.sh index 3a78e830c..d1ac74e45 100755 --- a/src/bin/buildForWindows.sh +++ b/src/bin/buildForWindows.sh @@ -52,6 +52,6 @@ log "download windows node..." try wget "https://nodejs.org/dist/latest-erbium/win-x86/node.exe" -O node.exe log "create the zip..." -try zip -9 -r "${OUTPUT}" ./* -x var +try zip -9 -r "${OUTPUT}" ./* log "Finished. You can find the zip at ${OUTPUT}"