Preserve file exec permissions for Mac update

This commit is contained in:
Mark Watkins 2011-12-18 16:22:02 +10:00
parent 7413ff1322
commit 6f147b2e03
2 changed files with 7 additions and 3 deletions

View File

@ -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) {

View File

@ -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();