diff options
Diffstat (limited to 'docs/guide/ags/utilities.md')
-rw-r--r-- | docs/guide/ags/utilities.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/guide/ags/utilities.md b/docs/guide/ags/utilities.md index 42589d3..aae255c 100644 --- a/docs/guide/ags/utilities.md +++ b/docs/guide/ags/utilities.md @@ -161,7 +161,7 @@ execAsync(["bash", "-c", "/path/to/script.sh"]) :::warning `subprocess`, `exec`, and `execAsync` executes the passed executable as is. They are **not** executed in a shell environment, -they do **not** expand env variables like `$HOME`, +they do **not** expand ENV variables like `$HOME`, and they do **not** handle logical operators like `&&` and `||`. If you want bash, run them with bash. |