aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Eric Zhang <ekzhang1@gmail.com> 2023-02-10 18:16:51 -0500
committerGravatar GitHub <noreply@github.com> 2023-02-10 15:16:51 -0800
commit10650cced26da994c29ac482674f010523d365c2 (patch)
tree046cdab402dcda1487cb66c6e6a3be33f1df71f1
parent8466e60e3acc84c7abfbaa36e6d5b81c2a4b0cac (diff)
downloadbun-10650cced26da994c29ac482674f010523d365c2.tar.gz
bun-10650cced26da994c29ac482674f010523d365c2.tar.zst
bun-10650cced26da994c29ac482674f010523d365c2.zip
Fix PATH setup in macOS setup instructions (#2044)
Very minor! I was just going through the setup instructions and had a bit of a double take.
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index fab9c7463..e0917320b 100644
--- a/README.md
+++ b/README.md
@@ -5133,7 +5133,7 @@ which clang-15
If it is not, you will have to run this to link it:
```bash
-export PATH="$(brew --prefix llvm@15)/bin"
+export PATH="$PATH:$(brew --prefix llvm@15)/bin"
export LDFLAGS="$LDFLAGS -L$(brew --prefix llvm@15)/lib"
export CPPFLAGS="$CPPFLAGS -I$(brew --prefix llvm@15)/include"
```