1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-11 13:10:58 +00:00

os: execute parse the command output from utf8

This commit is contained in:
Mateo Dev .59
2020-02-19 15:59:37 -03:00
parent 80582ffa66
commit 8a88637705
2 changed files with 2 additions and 2 deletions

View File

@@ -307,7 +307,7 @@ Error OS_Unix::execute(const String &p_path, const List<String> &p_arguments, bo
if (p_pipe_mutex) {
p_pipe_mutex->lock();
}
(*r_pipe) += buf;
(*r_pipe) += String::utf8(buf);
if (p_pipe_mutex) {
p_pipe_mutex->unlock();
}