From 5f5435c79d7c790d7a17a8dab7597d6419518dd4 Mon Sep 17 00:00:00 2001 From: lordmulder Date: Wed, 23 Feb 2011 02:52:44 +0100 Subject: [PATCH] Fix syntax errors in install script. --- etc/NSIS/setup.nsi | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/etc/NSIS/setup.nsi b/etc/NSIS/setup.nsi index 7947fc56..9c978a85 100644 --- a/etc/NSIS/setup.nsi +++ b/etc/NSIS/setup.nsi @@ -475,18 +475,18 @@ Section "Uninstall" SetOutPath "$INSTDIR" !insertmacro PrintProgress "$(LAMEXP_LANG_STATUS_UNINSTALL)" - Delete /REBOOTOK "$INSTDIR\LameXP.exe - Delete /REBOOTOK "$INSTDIR\LameXP-Portable.exe + Delete /REBOOTOK "$INSTDIR\LameXP.exe" + Delete /REBOOTOK "$INSTDIR\LameXP-Portable.exe" Delete /REBOOTOK "$INSTDIR\LameXP.exe.sig" - Delete /REBOOTOK "$INSTDIR\Uninstall.exe + Delete /REBOOTOK "$INSTDIR\Uninstall.exe" Delete /REBOOTOK "$INSTDIR\Changelog.htm" - Delete /REBOOTOK "$INSTDIR\Changelog.html - Delete /REBOOTOK "$INSTDIR\Translate.html - Delete /REBOOTOK "$INSTDIR\FAQ.html + Delete /REBOOTOK "$INSTDIR\Changelog.html" + Delete /REBOOTOK "$INSTDIR\Translate.html" + Delete /REBOOTOK "$INSTDIR\FAQ.html" Delete /REBOOTOK "$INSTDIR\Howto.html" - Delete /REBOOTOK "$INSTDIR\License.txt + Delete /REBOOTOK "$INSTDIR\License.txt" Delete /REBOOTOK "$INSTDIR\Contributors.txt" - Delete /REBOOTOK "$INSTDIR\ReadMe.txt + Delete /REBOOTOK "$INSTDIR\ReadMe.txt" RMDir "$INSTDIR"