Merge pull request #7824 from spycrab/updater_perm

MacUpdater: Fix permissions some more
This commit is contained in:
spycrab 2019-02-26 17:20:48 +01:00 committed by GitHub
commit 25e9339746
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 9 deletions

View File

@ -563,10 +563,17 @@ bool UpdateFiles(const std::vector<TodoList::UpdateOp>& to_update,
// TODO: A new updater protocol version is required to properly mark executable files. For
// now, copy executable bits from existing files. This will break for newly added executables.
mode_t permission;
std::optional<mode_t> permission;
if (File::Exists(path))
{
struct stat file_stats;
if (stat(path.c_str(), &file_stats) != 0)
return false;
permission = file_stats.st_mode;
std::string contents;
if (!File::ReadFileToString(path, contents))
{
@ -581,13 +588,6 @@ bool UpdateFiles(const std::vector<TodoList::UpdateOp>& to_update,
}
else if (!op.old_hash || contents_hash != *op.old_hash)
{
struct stat file_stats;
if (stat(path.c_str(), &file_stats) != 0)
return false;
permission = file_stats.st_mode;
if (!BackupFile(path))
return false;
}
@ -604,7 +604,7 @@ bool UpdateFiles(const std::vector<TodoList::UpdateOp>& to_update,
return false;
}
if (chmod(path.c_str(), permission) != 0)
if (permission.has_value() && chmod(path.c_str(), permission.value()) != 0)
return false;
}
return true;