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")
|
Set $DesktopShortcutArgument$ = GetProductProperty("desktopshortcut", "false")
|
||||||
|
|
||||||
[Sub_ConfigureProperties]
|
[Sub_ConfigureProperties]
|
||||||
if ($CreateContextMenuEntry$ = "true")
|
if ($CreateContextMenuEntry$)
|
||||||
Set $ContextMenuArguments$ = ", !addcontextmenufiles, !addcontextmenufolders"
|
Set $ContextMenuArguments$ = ", !addcontextmenufiles, !addcontextmenufolders"
|
||||||
else
|
else
|
||||||
Set $ContextMenuArguments$ = ""
|
Set $ContextMenuArguments$ = ""
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if ($CreateDesktopShortcut$ = "true")
|
if ($CreateDesktopShortcut$)
|
||||||
Set $DesktopShortcutArgument$ = ", !desktopicon"
|
Set $DesktopShortcutArgument$ = ", !desktopicon"
|
||||||
else
|
else
|
||||||
Set $DesktopShortcutArgument$ = ""
|
Set $DesktopShortcutArgument$ = ""
|
||||||
|
|
Loading…
Reference in New Issue