Fix if statements
This commit is contained in:
parent
1a2ee8f208
commit
032b7a6d1c
|
@ -20,13 +20,13 @@ Set $CreateContextMenuEntry$ = GetProductProperty("contextmenuentry", "false")
|
|||
Set $DesktopShortcutArgument$ = GetProductProperty("desktopshortcut", "false")
|
||||
|
||||
[Sub_ConfigureProperties]
|
||||
if ($CreateContextMenuEntry$ = "true")
|
||||
if ($CreateContextMenuEntry$)
|
||||
Set $ContextMenuArguments$ = ", !addcontextmenufiles, !addcontextmenufolders"
|
||||
else
|
||||
Set $ContextMenuArguments$ = ""
|
||||
endif
|
||||
|
||||
if ($CreateDesktopShortcut$ = "true")
|
||||
if ($CreateDesktopShortcut$)
|
||||
Set $DesktopShortcutArgument$ = ", !desktopicon"
|
||||
else
|
||||
Set $DesktopShortcutArgument$ = ""
|
||||
|
|
Loading…
Reference in New Issue