mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Preserve file exec permissions for Mac update
This commit is contained in:
parent
7413ff1322
commit
6f147b2e03
@ -372,6 +372,8 @@ void UpdaterWindow::replyFinished(QNetworkReply * reply)
|
||||
} while (!line.isNull());
|
||||
} else {
|
||||
QString fn=files.at(i).section("/",-1);
|
||||
QFile::Permissions perm=orig.permissions(apppath+fn);
|
||||
|
||||
// delete backups
|
||||
if (f.exists(backups+fn)) f.remove(backups+fn);
|
||||
// rename (move) current file to backup
|
||||
@ -383,6 +385,7 @@ void UpdaterWindow::replyFinished(QNetworkReply * reply)
|
||||
f.open(QFile::WriteOnly);
|
||||
f.write(ba);
|
||||
f.close();
|
||||
f.setPermissions(perm);
|
||||
}
|
||||
}
|
||||
if (bar) {
|
||||
|
@ -1155,11 +1155,12 @@ void MainWindow::RestartApplication(bool force_login)
|
||||
QStringList args;
|
||||
args << "-n"; // -n option is important, as it opens a new process
|
||||
args << apppath;
|
||||
args << "--args";
|
||||
args << "-p";
|
||||
|
||||
args << "--args"; // SleepyHead binary options after this
|
||||
args << "-p"; // -p starts with 1 second delay, to give this process time to save..
|
||||
|
||||
|
||||
if (force_login) args << "-l";
|
||||
// -p starts with 1 second delay, to give this process time to save..
|
||||
|
||||
if (QProcess::startDetached("/usr/bin/open",args)) {
|
||||
QApplication::instance()->exit();
|
||||
|
Loading…
Reference in New Issue
Block a user