diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2017-09-17 22:40:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-17 22:40:54 +0200 |
commit | 73b8e5acab7e389d7ce8cfb48d533ba74cd86133 (patch) | |
tree | 46c6a9cbc85eba19818fa5b9f8ef3c2a6615c194 /drivers/unix/file_access_unix.h | |
parent | 65ef19abe3cb95df72f5256b17ec6667ed26cf6d (diff) | |
parent | 3528b1e571dee24917b0141232f135e29bf088ba (diff) |
Merge pull request #11362 from marcelofg55/fix_x11_export
Fix x11 exported executables not getting the +x flag
Diffstat (limited to 'drivers/unix/file_access_unix.h')
-rw-r--r-- | drivers/unix/file_access_unix.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/unix/file_access_unix.h b/drivers/unix/file_access_unix.h index 6e5110431f..c5ab8821be 100644 --- a/drivers/unix/file_access_unix.h +++ b/drivers/unix/file_access_unix.h @@ -78,6 +78,8 @@ public: virtual uint64_t _get_modified_time(const String &p_file); + virtual Error _chmod(const String &p_path, int p_mod); + FileAccessUnix(); virtual ~FileAccessUnix(); }; |