You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-15 13:51:40 +00:00
Merge pull request #112016 from KoBeWi/fatal_blame
Fix verbose running message
This commit is contained in:
@@ -168,10 +168,13 @@ Error EditorRun::run(const String &p_scene, const String &p_write_movie, const V
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (OS::get_singleton()->is_stdout_verbose()) {
|
if (OS::get_singleton()->is_stdout_verbose()) {
|
||||||
print_line(vformat("Running: %s", exec));
|
PackedStringArray output;
|
||||||
|
output.reserve_exact(instance_args.size() + 1);
|
||||||
|
output.append(vformat("Running: %s", exec));
|
||||||
for (const String &E : instance_args) {
|
for (const String &E : instance_args) {
|
||||||
print_line(" %s", E);
|
output.append(E);
|
||||||
}
|
}
|
||||||
|
print_line(String(" ").join(output));
|
||||||
}
|
}
|
||||||
|
|
||||||
OS::ProcessID pid = 0;
|
OS::ProcessID pid = 0;
|
||||||
|
|||||||
Reference in New Issue
Block a user