Changed: Relaunch Installer when installed/migrated, see #279

This commit is contained in:
kervala 2016-08-16 18:27:00 +02:00
parent 9993eb3ed7
commit 13a44de8e4

View file

@ -215,6 +215,12 @@ int main(int argc, char *argv[])
if (!dialog.exec()) return 1;
step = config.getInstallNextStep();
if (step == Done)
{
// restart Installer, so it could be copied in TEMP and allowed to update itself
if (QProcess::startDetached(QApplication::applicationFilePath(), QApplication::arguments())) return 0;
}
}
CMainWindow mainWindow;