diff options
author | fuzzard <fuzzard@kodi.tv> | 2023-04-02 16:42:24 +0200 |
---|---|---|
committer | fuzzard <fuzzard@kodi.tv> | 2023-04-02 16:42:24 +0200 |
commit | c1097972731a69f572b6d4bb2d4591a789bc811e (patch) | |
tree | 9cfc914dd4b75e4a9fa3d0b3395e15b45d150639 /project | |
parent | d8fd5096dcdd86b8c36b0eaf9a23ea37215784fa (diff) |
[windows][nsis] Allow silent flag to continue x86 check for x86_64 system
nsis /S flag will allow bypassing the prompt checking about installing x86
executable on x86_64 host. This is used to assist in automating UWP packaging
Diffstat (limited to 'project')
-rw-r--r-- | project/Win32BuildSetup/genNsisInstaller.nsi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/project/Win32BuildSetup/genNsisInstaller.nsi b/project/Win32BuildSetup/genNsisInstaller.nsi index 304101878c..517dcb4935 100644 --- a/project/Win32BuildSetup/genNsisInstaller.nsi +++ b/project/Win32BuildSetup/genNsisInstaller.nsi @@ -350,7 +350,7 @@ Function .onInit ${Endif} !else ${If} ${RunningX64} - MessageBox MB_YESNO|MB_ICONEXCLAMATION|MB_DEFBUTTON2 'There is a specific 64-bit ${APP_NAME} version available for download. Please consider installing the 64-bit version instead.$\nFor details visit ${WEBSITE}.$\nProceed with 32-bit installation anyway?' IDYES noprob + MessageBox MB_YESNO|MB_ICONEXCLAMATION|MB_DEFBUTTON2 'There is a specific 64-bit ${APP_NAME} version available for download. Please consider installing the 64-bit version instead.$\nFor details visit ${WEBSITE}.$\nProceed with 32-bit installation anyway?' /SD IDYES IDYES noprob Quit noprob: ${Endif} |