comparison nsis/gvim.nsi @ 11555:8be4b88c47d7 v8.0.0660

patch 8.0.0660: silent install on MS-Windows shows dialog commit https://github.com/vim/vim/commit/a1fed064d1eca6ae2c526311ec5464175c6f19e2 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jun 22 22:05:02 2017 +0200 patch 8.0.0660: silent install on MS-Windows shows dialog Problem: Silent install on MS-Windows does show a dialog. Solution: Add /SD to the default choice. (allburov, closes https://github.com/vim/vim/issues/1772)
author Christian Brabandt <cb@256bit.org>
date Thu, 22 Jun 2017 22:15:05 +0200
parents 5de2fb612f21
children bafb447104f6
comparison
equal deleted inserted replaced
11554:f57b7c12e009 11555:8be4b88c47d7
85 # Functions 85 # Functions
86 86
87 Function .onInit 87 Function .onInit
88 MessageBox MB_YESNO|MB_ICONQUESTION \ 88 MessageBox MB_YESNO|MB_ICONQUESTION \
89 "This will install Vim ${VER_MAJOR}.${VER_MINOR} on your computer.$\n Continue?" \ 89 "This will install Vim ${VER_MAJOR}.${VER_MINOR} on your computer.$\n Continue?" \
90 IDYES NoAbort 90 /SD IDYES NoAbort
91 Abort ; causes installer to quit. 91 Abort ; causes installer to quit.
92 NoAbort: 92 NoAbort:
93 93
94 # run the install program to check for already installed versions 94 # run the install program to check for already installed versions
95 SetOutPath $TEMP 95 SetOutPath $TEMP