Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorallexzander <allexzander@users.noreply.github.com>2022-08-02 15:32:26 +0300
committerGitHub <noreply@github.com>2022-08-02 15:32:26 +0300
commitfea9863097e3abfc372695f5e0e3846e37cecbcb (patch)
tree4fef89c428268e4b84aadadaffe4515969148d28
parentfa44a91a537aa4b0b6e082c0f8fed5eabc0f2746 (diff)
parent6ad7caaf9b34a88e0d93d5f8f8d08b3874c872b9 (diff)
Merge pull request #4803 from nextcloud/backport/4801/stable-3.5v3.5.4
[stable-3.5] Always run MSI with full UI.
-rw-r--r--src/gui/updater/ocupdater.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/updater/ocupdater.cpp b/src/gui/updater/ocupdater.cpp
index 102c7fcbb..6c056024f 100644
--- a/src/gui/updater/ocupdater.cpp
+++ b/src/gui/updater/ocupdater.cpp
@@ -222,7 +222,7 @@ void OCUpdater::slotStartInstaller()
};
QString msiLogFile = cfg.configPath() + "msi.log";
- QString command = QString("&{msiexec /norestart /passive /i '%1' /L*V '%2'| Out-Null ; &'%3'}")
+ QString command = QString("&{msiexec /i '%1' /L*V '%2'| Out-Null ; &'%3'}")
.arg(preparePathForPowershell(updateFile))
.arg(preparePathForPowershell(msiLogFile))
.arg(preparePathForPowershell(QCoreApplication::applicationFilePath()));