Skip to content

Commit 10650cc

Browse files
authored
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.
1 parent 8466e60 commit 10650cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5133,7 +5133,7 @@ which clang-15
51335133
If it is not, you will have to run this to link it:
51345134
51355135
```bash
5136-
export PATH="$(brew --prefix llvm@15)/bin"
5136+
export PATH="$PATH:$(brew --prefix llvm@15)/bin"
51375137
export LDFLAGS="$LDFLAGS -L$(brew --prefix llvm@15)/lib"
51385138
export CPPFLAGS="$CPPFLAGS -I$(brew --prefix llvm@15)/include"
51395139
```

0 commit comments

Comments
 (0)