diff options
Diffstat (limited to 'docs/cli/bunx.md')
-rw-r--r-- | docs/cli/bunx.md | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/docs/cli/bunx.md b/docs/cli/bunx.md index fe7bd80a2..5a70c1e70 100644 --- a/docs/cli/bunx.md +++ b/docs/cli/bunx.md @@ -56,16 +56,13 @@ By default, Bun respects shebangs. If an executable is marked with `#!/usr/bin/e $ bunx --bun my-cli ``` -{% callout %} -**Note** — The `--bun` flag must occur _before_ the executable name. Flags that appear _after_ the name are passed through to the executable. +The `--bun` flag must occur _before_ the executable name. Flags that appear _after_ the name are passed through to the executable. ```bash $ bunx --bun my-cli # good $ bunx my-cli --bun # bad ``` -{% /callout %} - <!-- ## Environment variables Bun automatically loads environment variables from `.env` files before running a file, script, or executable. The following files are checked, in order: |