diff options
author | 2023-10-12 13:43:45 -0700 | |
---|---|---|
committer | 2023-10-12 13:43:45 -0700 | |
commit | 89faee2522c463f7d59bc4ef9f6146a83a9e5a8b (patch) | |
tree | 27496db4eee4f2f0dc360dcbbb469ef1b22fafa9 | |
parent | 969da088f5db3258a803ec186012e30f992829b4 (diff) | |
download | bun-89faee2522c463f7d59bc4ef9f6146a83a9e5a8b.tar.gz bun-89faee2522c463f7d59bc4ef9f6146a83a9e5a8b.tar.zst bun-89faee2522c463f7d59bc4ef9f6146a83a9e5a8b.zip |
Update installation.md
-rw-r--r-- | docs/installation.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/installation.md b/docs/installation.md index 6d0f3f997..767f571e8 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -96,13 +96,13 @@ Then add these lines to the appropriate file, save it, and open a new shell. {% codetabs %} -```bash#bash -# ~/.bashrc +```bash#zsh +# ~/.zshrc export BUN_INSTALL="$HOME/.bun" export PATH="$BUN_INSTALL/bin:$PATH" ``` -```bash#zsh +```bash#bash # ~/.bashrc export BUN_INSTALL="$HOME/.bun" export PATH="$BUN_INSTALL/bin:$PATH" |