diff options
author | Kevin <[email protected]> | 2024-10-11 14:57:00 -0300 |
---|---|---|
committer | GitHub <[email protected]> | 2024-10-11 14:57:00 -0300 |
commit | 7dbcef8031ddf64ccf1963f804ee4bb01849471f (patch) | |
tree | 6157ca4426e13800c79c50ff7900f2c7658fa71c /docs/guide/ags/utilities.md | |
parent | 03f1a08f6e5996e5d3d7ff3952465c9c29b9f624 (diff) | |
parent | d0fb3d0434534661346bf787395e9531c97731f8 (diff) |
Merge branch 'Aylur:main' into main
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. |