diff options
author | Ivan Habunek <ivan.habunek@gmail.com> | 2012-09-13 16:19:04 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2012-09-13 09:39:18 -0700 |
commit | 791edd78b47641c04601cea26131e3bd05de5bc1 (patch) | |
tree | 97d8623bf711aae9a92d1508d0f544abe03bd495 /packaging | |
parent | bccbdccdfa0f0867d46cf7f31df60fcd77e732c9 (diff) | |
download | subsurface-791edd78b47641c04601cea26131e3bd05de5bc1.tar.gz |
Minor fix for the NSIS installer script
Forgot to add "Uninstall.exe" to the uninstaller section, so the file and
the installation folder weren't being deleted on uninstall.
Signed-Off-By: Ivan Habunek <ivan.habunek@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'packaging')
-rw-r--r-- | packaging/windows/subsurface.nsi | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packaging/windows/subsurface.nsi b/packaging/windows/subsurface.nsi index 4d271893b..c48747746 100644 --- a/packaging/windows/subsurface.nsi +++ b/packaging/windows/subsurface.nsi @@ -151,6 +151,7 @@ Section "Uninstall" Delete "$INSTDIR\subsurface.exe" Delete "$INSTDIR\subsurface.ico" Delete "$INSTDIR\subsurface.svg" + Delete "$INSTDIR\Uninstall.exe" RMDir "$INSTDIR" # Remove shortcuts |