diff options
author | 2023-02-10 18:16:51 -0500 | |
---|---|---|
committer | 2023-02-10 15:16:51 -0800 | |
commit | 10650cced26da994c29ac482674f010523d365c2 (patch) | |
tree | 046cdab402dcda1487cb66c6e6a3be33f1df71f1 | |
parent | 8466e60e3acc84c7abfbaa36e6d5b81c2a4b0cac (diff) | |
download | bun-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.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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" ``` |