comparison nsis/gvim.nsi @ 11571:bafb447104f6 v8.0.0668

patch 8.0.0668: nsis installer script does not work commit https://github.com/vim/vim/commit/a1bd86e0f2056f796390bc0cd3aba5c89513d0d2 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jun 24 15:11:01 2017 +0200 patch 8.0.0668: nsis installer script does not work Problem: Nsis installer script does not work. (Christian Brabandt) Solution: Fix the syntax of /SD.
author Christian Brabandt <cb@256bit.org>
date Sat, 24 Jun 2017 15:15:03 +0200
parents 8be4b88c47d7
children e18b9d7d8d78
comparison
equal deleted inserted replaced
11570:62504e4ce7ba 11571:bafb447104f6
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 /SD IDYES NoAbort 90 /SD IDYES \
91 IDYES NoAbort
91 Abort ; causes installer to quit. 92 Abort ; causes installer to quit.
92 NoAbort: 93 NoAbort:
93 94
94 # run the install program to check for already installed versions 95 # run the install program to check for already installed versions
95 SetOutPath $TEMP 96 SetOutPath $TEMP