diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2020-01-23 01:25:47 +0100 |
---|---|---|
committer | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2020-01-23 01:26:32 +0100 |
commit | 90a1f8d8a7789c6fa9191c8684cd24edca066577 (patch) | |
tree | ae0045aac1b5da04f66be3b49ca1625a0e93ba45 /doc/classes | |
parent | 94d3bcbc9b523a8aae4cc0dd1f1e522c2171900e (diff) |
Make `OS.execute()` blocking by default if not specified
This makes `OS.execute()` calls quicker to set up when calling programs
in a blocking fashion.
Diffstat (limited to 'doc/classes')
-rw-r--r-- | doc/classes/OS.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/classes/OS.xml b/doc/classes/OS.xml index 2c44a3dfb0..a37fb28901 100644 --- a/doc/classes/OS.xml +++ b/doc/classes/OS.xml @@ -95,7 +95,7 @@ </argument> <argument index="1" name="arguments" type="PoolStringArray"> </argument> - <argument index="2" name="blocking" type="bool"> + <argument index="2" name="blocking" type="bool" default="true"> </argument> <argument index="3" name="output" type="Array" default="[ ]"> </argument> |