From e52e1ec3ba9aad840c2f744b98313572addd1eed Mon Sep 17 00:00:00 2001 From: Jacques Caron Date: Thu, 21 Sep 2023 16:38:14 +0200 Subject: [PATCH] Clarify --silent disabling first run Clarify that --silent also disables starting the app after install. --- src/Update/StartupOption.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Update/StartupOption.cs b/src/Update/StartupOption.cs index 2be5641b5..33540ce1c 100644 --- a/src/Update/StartupOption.cs +++ b/src/Update/StartupOption.cs @@ -59,7 +59,7 @@ private OptionSet Parse(string[] args) { { "i=|icon", "Path to an ICO file that will be used for icon shortcuts", v => icon = v}, { "setupIcon=", "Path to an ICO file that will be used for the Setup executable's icon", v => setupIcon = v}, { "n=|signWithParams=", "Sign the installer via SignTool.exe with the parameters given", v => signingParameters = v}, - { "s|silent", "Silent install", _ => silentInstall = true}, + { "s|silent", "Silent install. Also disables starting the app after install", _ => silentInstall = true}, { "b=|baseUrl=", "Provides a base URL to prefix the RELEASES file packages with", v => baseUrl = v, true}, { "a=|process-start-args=", "Arguments that will be used when starting executable", v => processStartArgs = v, true}, { "l=|shortcut-locations=", "Comma-separated string of shortcut locations, e.g. 'Desktop,StartMenu'", v => shortcutArgs = v},