Merge pull request #62616 from bruvzg/fix_macos_chmod

This commit is contained in:
Rémi Verschelde 2022-07-01 23:58:24 +02:00 committed by GitHub
commit 2f0b2d6654
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1086,6 +1086,7 @@ Error EditorExportPlatformOSX::export_project(const Ref<EditorExportPreset> &p_p
Ref<FileAccess> f = FileAccess::open(file, FileAccess::WRITE);
if (f.is_valid()) {
f->store_buffer(data.ptr(), data.size());
f.unref();
if (is_execute) {
// chmod with 0755 if the file is executable.
FileAccess::set_unix_permissions(file, 0755);