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 /core/os/dir_access.h | |
| parent | 65ef19abe3cb95df72f5256b17ec6667ed26cf6d (diff) | |
| parent | 3528b1e571dee24917b0141232f135e29bf088ba (diff) | |
| download | redot-engine-73b8e5acab7e389d7ce8cfb48d533ba74cd86133.tar.gz | |
Merge pull request #11362 from marcelofg55/fix_x11_export
Fix x11 exported executables not getting the +x flag
Diffstat (limited to 'core/os/dir_access.h')
| -rw-r--r-- | core/os/dir_access.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/os/dir_access.h b/core/os/dir_access.h index 6ad8b4c49b..7fa3ce5cf1 100644 --- a/core/os/dir_access.h +++ b/core/os/dir_access.h @@ -89,7 +89,7 @@ public: static bool exists(String p_dir); virtual size_t get_space_left() = 0; - virtual Error copy(String p_from, String p_to); + virtual Error copy(String p_from, String p_to, int chmod_flags = -1); virtual Error rename(String p_from, String p_to) = 0; virtual Error remove(String p_name) = 0; |
