diff options
author | Tank_Master <tank.master@phoenixviewer.com> | 2015-02-17 18:55:56 -0800 |
---|---|---|
committer | Tank_Master <tank.master@phoenixviewer.com> | 2015-02-17 18:55:56 -0800 |
commit | 412bfd9edc3000a143f8757d1f97f9bac79f33fc (patch) | |
tree | b0db726f2067b7e6e9bc400d1a50f36841e5bbde /indra | |
parent | 65c130a9a803eb40ea5d7510faef86aacb556e53 (diff) |
opps, let's make the deletion of the help directory recursive
Diffstat (limited to 'indra')
-rwxr-xr-x | indra/newview/installers/windows/installer_template.nsi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/installers/windows/installer_template.nsi b/indra/newview/installers/windows/installer_template.nsi index 1d6bde0052..509b4f6d84 100755 --- a/indra/newview/installers/windows/installer_template.nsi +++ b/indra/newview/installers/windows/installer_template.nsi @@ -654,7 +654,7 @@ Delete "$INSTDIR\SecondLife.exe" Delete "$INSTDIR\VivoxVoiceService-*.log"
# Remove entire help directory
-RMDir "$INSTDIR\help"
+RMDir /r "$INSTDIR\help"
Delete "$INSTDIR\uninst.exe"
RMDir "$INSTDIR"
|