diff options
author | pavelkproductengine <pavelkproductengine@lindenlab.com> | 2015-07-13 21:21:45 +0300 |
---|---|---|
committer | pavelkproductengine <pavelkproductengine@lindenlab.com> | 2015-07-13 21:21:45 +0300 |
commit | ca6a9d16354a55cc40f2ab22d7b8d13c66bfac08 (patch) | |
tree | c87beca4d99756b4128b7c973c45a755c4868b69 | |
parent | 3e39a29683864a833cf3c5590597a0c517daa23b (diff) |
MAINT-5389 FIXED Windows viewer starts automatically during silent install
-rwxr-xr-x | indra/newview/installers/windows/installer_template.nsi | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/newview/installers/windows/installer_template.nsi b/indra/newview/installers/windows/installer_template.nsi index 95cdf90e99..b8677fd9e4 100755 --- a/indra/newview/installers/windows/installer_template.nsi +++ b/indra/newview/installers/windows/installer_template.nsi @@ -165,7 +165,9 @@ lbl_configure_default_lang: StrCpy $LANGUAGE $0
# For silent installs, no language prompt, use default
- IfSilent lbl_return
+ IfSilent 0 +3
+ StrCpy $SKIP_AUTORUN "true"
+ Goto lbl_return
StrCmp $SKIP_DIALOGS "true" lbl_return
lbl_build_menu:
|