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:
parent
8a4d305843
commit
2e50c3856e
2 changed files with 2 additions and 2 deletions
|
@ -25,7 +25,7 @@ NOTARIZATION_USER=""
|
||||||
NOTARIZATION_PASSWORD=""
|
NOTARIZATION_PASSWORD=""
|
||||||
|
|
||||||
# Paths for Windows installer build
|
# 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
|
# 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'
|
SIGNTOOL='C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\x64\signtool.exe'
|
||||||
|
|
|
@ -83,7 +83,7 @@ if [ $platform = "w" ]; then
|
||||||
FAILED=1
|
FAILED=1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
plugin_path=$(cd "$NSIS_DIR\\Plugins" && pwd)
|
plugin_path=$(cd "$NSIS_DIR\\Plugins\\x86-unicode" && pwd)
|
||||||
plugins="AppAssocReg ApplicationID InvokeShellVerb ShellLink UAC"
|
plugins="AppAssocReg ApplicationID InvokeShellVerb ShellLink UAC"
|
||||||
echo "Checking for NSIS plugins in $plugin_path"
|
echo "Checking for NSIS plugins in $plugin_path"
|
||||||
for i in $plugins; do
|
for i in $plugins; do
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue