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.
This commit is contained in:
Eric Zhang
2023-02-10 18:16:51 -05:00
committed by GitHub
parent 8466e60e3a
commit 10650cced2

View File

@@ -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"
```