diff options
author | canni0 <canni0@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2008-10-08 16:56:12 +0000 |
---|---|---|
committer | canni0 <canni0@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2008-10-08 16:56:12 +0000 |
commit | 721776f85625ab218cff2d8156e80522f5381045 (patch) | |
tree | c3201d67011744fbb64cfe6cb82751f46f247a45 /installer/settings/files_main_uninstall.nsh | |
parent | 1b801a741edc0a3d3b64b83a75598a5a10da69c6 (diff) | |
download | usdx-721776f85625ab218cff2d8156e80522f5381045.tar.gz usdx-721776f85625ab218cff2d8156e80522f5381045.tar.xz usdx-721776f85625ab218cff2d8156e80522f5381045.zip |
- Few bug fixes
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1442 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to '')
-rw-r--r-- | installer/settings/files_main_uninstall.nsh | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/installer/settings/files_main_uninstall.nsh b/installer/settings/files_main_uninstall.nsh index c8d3a229..b3d69da2 100644 --- a/installer/settings/files_main_uninstall.nsh +++ b/installer/settings/files_main_uninstall.nsh @@ -7,7 +7,7 @@ SetShellVarContext all
- RMDir "$SMPROGRAMS\$ICONS_GROUP\
+ RMDir /r "$SMPROGRAMS\$ICONS_GROUP\"
; Delete created Icon on Desktop
@@ -16,11 +16,11 @@ ; Remove dirs
- RMDir "$INSTDIR\plugins"
- RMDir "$INSTDIR\themes"
- RMDir "$INSTDIR\languages"
- RMDir "$INSTDIR\visuals"
- RMDir "$INSTDIR\sounds"
+ RMDir /r "$INSTDIR\plugins"
+ RMDir /r "$INSTDIR\themes"
+ RMDir /r "$INSTDIR\languages"
+ RMDir /r "$INSTDIR\visuals"
+ RMDir /r "$INSTDIR\sounds"
; Delete remaining files
@@ -30,6 +30,7 @@ Delete "$INSTDIR\Changelog.txt"
Delete "$INSTDIR\documentation.pdf"
Delete "$INSTDIR\License.txt"
+ Delete "$INSTDIR\config.ini"
Delete "$INSTDIR\README.txt"
Delete "$INSTDIR\Error.log"
Delete "$INSTDIR\covers.cache"
|