diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2019-05-28 14:26:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-28 14:26:57 +0200 |
commit | 06633a8074b1695e0f84755275b20adc2df827a6 (patch) | |
tree | 5087d5d08f7c80d8ec3342d2d2e8cce8da1cb8fb /core/bind/core_bind.h | |
parent | 235172e26be4f57fcccc53bd1dedb0f79407a9f0 (diff) | |
parent | 9e465c9fd0a5771d870e3550958b63ebbe992ca7 (diff) | |
download | redot-engine-06633a8074b1695e0f84755275b20adc2df827a6.tar.gz |
Merge pull request #26462 from SubSage/master
Fixes OS.execute; stderr was silenced; adds missing quote from exe args (windows)
Diffstat (limited to 'core/bind/core_bind.h')
-rw-r--r-- | core/bind/core_bind.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/bind/core_bind.h b/core/bind/core_bind.h index 3e46d24627..8f74d88be5 100644 --- a/core/bind/core_bind.h +++ b/core/bind/core_bind.h @@ -214,7 +214,7 @@ public: bool is_in_low_processor_usage_mode() const; String get_executable_path() const; - int execute(const String &p_path, const Vector<String> &p_arguments, bool p_blocking, Array p_output = Array()); + int execute(const String &p_path, const Vector<String> &p_arguments, bool p_blocking, Array p_output = Array(), bool p_read_stderr = false); Error kill(int p_pid); Error shell_open(String p_uri); |