diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-06-27 13:06:55 +0000 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-06-27 13:06:55 +0000 |
commit | 2cdaa0a249e4de6f738a78f9a5e1d173fcf5a425 (patch) | |
tree | 0ee262ff6dae3d9ac614c2bdb71671e432d33ec0 /toolkit/mozapps | |
parent | 58fd6c8ee237aa69e7d15d8a11b2685a17ee9a11 (diff) | |
download | aura-central-2cdaa0a249e4de6f738a78f9a5e1d173fcf5a425.tar.gz |
Installer: Stop trying to read stub installer data from ini file
Diffstat (limited to 'toolkit/mozapps')
-rwxr-xr-x | toolkit/mozapps/installer/windows/nsis/common.nsh | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/toolkit/mozapps/installer/windows/nsis/common.nsh b/toolkit/mozapps/installer/windows/nsis/common.nsh index 846718dab..36e228797 100755 --- a/toolkit/mozapps/installer/windows/nsis/common.nsh +++ b/toolkit/mozapps/installer/windows/nsis/common.nsh @@ -5218,21 +5218,6 @@ StrCpy $AddStartMenuSC "1" ${EndIf} - ReadINIStr $R8 $R7 "Install" "TaskbarShortcut" - ${If} $R8 == "false" - StrCpy $AddTaskbarSC "0" - ${Else} - StrCpy $AddTaskbarSC "1" - ${EndIf} - - ReadINIStr $R8 $R7 "Install" "MaintenanceService" - ${If} $R8 == "false" - StrCpy $InstallMaintenanceService "0" - ${Else} - ; Installing the service always requires elevation. - ${ElevateUAC} - ${EndIf} - !ifndef NO_STARTMENU_DIR ReadINIStr $R8 $R7 "Install" "StartMenuDirectoryName" ${If} $R8 != "" |