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 | 610c5fc6cee6346b5333077c29029e3e90e0c4cb (patch) | |
tree | 0ee262ff6dae3d9ac614c2bdb71671e432d33ec0 | |
parent | 68728c51c4e17806eaa3fa1e6ffd482868b84a04 (diff) | |
download | UXP-610c5fc6cee6346b5333077c29029e3e90e0c4cb.tar UXP-610c5fc6cee6346b5333077c29029e3e90e0c4cb.tar.gz UXP-610c5fc6cee6346b5333077c29029e3e90e0c4cb.tar.lz UXP-610c5fc6cee6346b5333077c29029e3e90e0c4cb.tar.xz UXP-610c5fc6cee6346b5333077c29029e3e90e0c4cb.zip |
Installer: Stop trying to read stub installer data from ini file
-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 != "" |