From f540f269306a6cc66f8f009afde38acea22f22ee Mon Sep 17 00:00:00 2001 From: vadym Date: Wed, 24 Mar 2021 23:41:09 +0200 Subject: [PATCH] 1. corrected MSI build script --- contrib/msi/build-msi.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) mode change 100644 => 100755 contrib/msi/build-msi.sh diff --git a/contrib/msi/build-msi.sh b/contrib/msi/build-msi.sh old mode 100644 new mode 100755 index 57d4e81d..776ad1ce --- a/contrib/msi/build-msi.sh +++ b/contrib/msi/build-msi.sh @@ -27,9 +27,9 @@ then fi # Build Yggdrasil! -[ "${PKGARCH}" == "x64" ] && GOOS=windows GOARCH=amd64 CGO_ENABLED=0 ./build -p -l "-aslr" -[ "${PKGARCH}" == "x86" ] && GOOS=windows GOARCH=386 CGO_ENABLED=0 ./build -p -l "-aslr" -[ "${PKGARCH}" == "arm" ] && GOOS=windows GOARCH=arm CGO_ENABLED=0 ./build -p -l "-aslr" +[ "${PKGARCH}" == "x64" ] && GOOS=windows GOARCH=amd64 CGO_ENABLED=0 ./build +[ "${PKGARCH}" == "x86" ] && GOOS=windows GOARCH=386 CGO_ENABLED=0 ./build +[ "${PKGARCH}" == "arm" ] && GOOS=windows GOARCH=arm CGO_ENABLED=0 ./build #[ "${PKGARCH}" == "arm64" ] && GOOS=windows GOARCH=arm64 CGO_ENABLED=0 ./build # Create the postinstall script