From 93ab167a8df76825b59873d6670fa83d8389eec2 Mon Sep 17 00:00:00 2001 From: Nino Date: Fri, 14 Nov 2025 06:31:07 +0100 Subject: [PATCH] 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` --- docs/bundler/executables.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/bundler/executables.mdx b/docs/bundler/executables.mdx index af2229227e..79e6d6a55e 100644 --- a/docs/bundler/executables.mdx +++ b/docs/bundler/executables.mdx @@ -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