mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-04-16 14:17:12 +02:00
Check updater exit status on Linux
This commit is contained in:
parent
98ba2c7ce4
commit
22a3093815
1 changed files with 3 additions and 2 deletions
|
@ -109,6 +109,7 @@ bool Launcher::launchUpdater(UpdaterLaunch action) {
|
|||
Logs::closeMain();
|
||||
CrashReports::Finish();
|
||||
|
||||
int waitStatus = 0;
|
||||
if (justRelaunch) {
|
||||
return GLib::spawn_async(
|
||||
initialWorkingDir().toStdString(),
|
||||
|
@ -129,8 +130,8 @@ bool Launcher::launchUpdater(UpdaterLaunch action) {
|
|||
nullptr,
|
||||
nullptr,
|
||||
nullptr,
|
||||
nullptr,
|
||||
nullptr)) {
|
||||
&waitStatus,
|
||||
nullptr) || !g_spawn_check_exit_status(waitStatus, nullptr)) {
|
||||
return false;
|
||||
}
|
||||
return launchUpdater(UpdaterLaunch::JustRelaunch);
|
||||
|
|
Loading…
Add table
Reference in a new issue