diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-06-24 15:11:01 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-06-24 15:11:01 +0200 |
commit | a1bd86e0f2056f796390bc0cd3aba5c89513d0d2 (patch) | |
tree | 7dfea12e059c4bc89c154e0d6094971b77d2fafd /nsis | |
parent | 53564f7c1a2998d92568e07fff1f2a4c1cecb646 (diff) | |
download | vim-git-a1bd86e0f2056f796390bc0cd3aba5c89513d0d2.tar.gz |
patch 8.0.0668: nsis installer script does not workv8.0.0668
Problem: Nsis installer script does not work. (Christian Brabandt)
Solution: Fix the syntax of /SD.
Diffstat (limited to 'nsis')
-rw-r--r-- | nsis/gvim.nsi | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nsis/gvim.nsi b/nsis/gvim.nsi index 9ace4ea2c..dba9021b0 100644 --- a/nsis/gvim.nsi +++ b/nsis/gvim.nsi @@ -87,7 +87,8 @@ UninstPage instfiles Function .onInit MessageBox MB_YESNO|MB_ICONQUESTION \ "This will install Vim ${VER_MAJOR}.${VER_MINOR} on your computer.$\n Continue?" \ - /SD IDYES NoAbort + /SD IDYES \ + IDYES NoAbort Abort ; causes installer to quit. NoAbort: |