diff options
author | Oz Linden <oz@lindenlab.com> | 2013-12-11 11:17:31 -0500 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2013-12-11 11:17:31 -0500 |
commit | 69dfa3507aace6449542d1ef5e29e88269871d79 (patch) | |
tree | fb3217860480a610f57421ce2e8c71bdd218be30 | |
parent | 93994489877d3ff4e78a5a5ac56122620c6a608e (diff) |
Workaround for MAINT 3099: remove any Vivox log file left in the program folder
-rwxr-xr-x | indra/newview/installers/windows/installer_template.nsi | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/newview/installers/windows/installer_template.nsi b/indra/newview/installers/windows/installer_template.nsi index 6f0b57e648..9c404197f9 100755 --- a/indra/newview/installers/windows/installer_template.nsi +++ b/indra/newview/installers/windows/installer_template.nsi @@ -674,6 +674,8 @@ Delete "$INSTDIR\motions\*.lla" Delete "$INSTDIR\trial\*.html"
Delete "$INSTDIR\newview.exe"
Delete "$INSTDIR\SecondLife.exe"
+;; MAINT-3099 workaround - prevent these log files, if present, from causing a user alert
+Delete "$INSTDIR\VivoxVoiceService-*.log"
;; Remove entire help directory
Delete "$INSTDIR\help\Advanced\*"
RMDir "$INSTDIR\help\Advanced"
|