allow .exe installers to access $global variable (see #854)

This commit is contained in:
Luke Sampson 2016-05-18 12:36:36 +10:00
parent a631788ca2
commit 7d87056a0f

View File

@ -16,11 +16,11 @@
"installer": { "installer": {
"args": [ "args": [
"/quiet", "/quiet",
"InstallAllUsers=0", "InstallAllUsers=$(@{$true=1;$false=0}[$global])",
"TargetDir=$dir", "TargetDir=$dir",
"AssociateFiles=0", "AssociateFiles=0",
"Shortcuts=0", "Shortcuts=0",
"InstallLauncherAllUsers=0" "InstallLauncherAllUsers=$(@{$true=1;$false=0}[$global])"
] ]
}, },
"uninstaller": { "uninstaller": {