You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-13 13:31:48 +00:00
Split OS::execute into two methods
1. execute(): Executes a command and returns the results. 2. create_process(): Creates a new process and returns the new process' id.
This commit is contained in:
@@ -1411,7 +1411,7 @@ public:
|
||||
args.push_back(cert_pass);
|
||||
args.push_back(p_path);
|
||||
|
||||
OS::get_singleton()->execute(signtool_path, args, true);
|
||||
OS::get_singleton()->execute(signtool_path, args);
|
||||
#endif // WINDOWS_ENABLED
|
||||
|
||||
return OK;
|
||||
|
||||
Reference in New Issue
Block a user