docs: fix environment variable syntax in executable example (#24706)

### What does this PR do?

Fixes a typo in the docs. 

`bun_BE_BUN=1` doesn't work, it has to be capitalized `BUN_BE_BUN=1`
This commit is contained in:
Nino
2025-11-14 06:31:07 +01:00
committed by GitHub
parent d8ee26509c
commit 93ab167a8d

View File

@@ -216,7 +216,7 @@ However, with the `BUN_BE_BUN=1` environment variable, it acts just like the `bu
```bash icon="terminal" terminal
# With the env var, the executable acts like the `bun` CLI
bun_BE_BUN=1 ./such-bun install
BUN_BE_BUN=1 ./such-bun install
```
```txt