Add missing silent flag to uninstall

This commit is contained in:
Jordan Dominion
2023-06-26 13:15:04 -04:00
parent 562ab45a7a
commit f79777daec
@@ -55,7 +55,7 @@ else
restartService = interactive;
process.StartInfo.Arguments = uninstall
? "-u"
? $"-u{(silent ? " -s" : String.Empty)}"
: $"-i -f -x{(restartService ? " -r" : String.Empty)}{((interactive || shortcut) ? " -c" : String.Empty)}{(silent ? " -s" : String.Empty)}";
process.Start();