Update paths for NSIS 3

Which seems to work the same as the NSIS 2 Unicode version we were using
previously
This commit is contained in:
Dan Stillman 2023-05-18 10:40:29 +01:00
parent 8a4d305843
commit 2e50c3856e
2 changed files with 2 additions and 2 deletions

View file

@ -25,7 +25,7 @@ NOTARIZATION_USER=""
NOTARIZATION_PASSWORD=""
# Paths for Windows installer build
NSIS_DIR='C:\Program Files (x86)\NSIS\Unicode\'
NSIS_DIR='C:\Program Files (x86)\NSIS\'
# Paths for Windows installer build only necessary for signed binaries
SIGNTOOL='C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\x64\signtool.exe'

View file

@ -83,7 +83,7 @@ if [ $platform = "w" ]; then
FAILED=1
fi
plugin_path=$(cd "$NSIS_DIR\\Plugins" && pwd)
plugin_path=$(cd "$NSIS_DIR\\Plugins\\x86-unicode" && pwd)
plugins="AppAssocReg ApplicationID InvokeShellVerb ShellLink UAC"
echo "Checking for NSIS plugins in $plugin_path"
for i in $plugins; do