Skip to content

Commit aaa7f4e

Browse files
committed
coderabbit fixes
1 parent ccb2fcf commit aaa7f4e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/guides/frameworks/bun.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import CliViewRunStep from "/snippets/step-view-run.mdx";
2525
- Certain OpenTelemetry instrumentation will not work with Bun, because Bun does not support Node's `register` hook. This means that some libraries that rely on this hook will not work with Bun.
2626
- If Bun is installed via Homebrew (e.g. `/opt/homebrew/bin/bun`), you may see an `ENOENT: spawn /Users/<you>/.bun/bin/bun` error because the CLI expects Bun at the default install path. **Workaround:** create a symlink:
2727
```bash
28-
ln -s $(which bun) ~/.bun/bin/bun
28+
mkdir -p ~/.bun/bin && ln -s $(which bun) ~/.bun/bin/bun
2929
```
3030

3131
## Initial setup

0 commit comments

Comments
 (0)