Skip to content
This repository has been archived by the owner on Jan 18, 2024. It is now read-only.

Commit

Permalink
🐛 Fix clang-tidy symbolic link
Browse files Browse the repository at this point in the history
Use `$(brew --prefix llvm)` rather than hard coding the directory which
may change depending on the system it is installed on.
  • Loading branch information
Khalil Estell authored and kammce committed Sep 27, 2023
1 parent b26708e commit 82c3160
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
compiler_version: 14
os: macos-12
standard_library: libc++
installations: brew install llvm && sudo ln -s /opt/homebrew/opt/llvm/bin/clang-tidy /usr/local/bin/clang-tidy
installations: brew install llvm && sudo ln -s $(brew --prefix llvm)/bin/clang-tidy /usr/local/bin/
profile_path: profiles/x86_64/mac/

# - toolchain: gcc
Expand Down

0 comments on commit 82c3160

Please sign in to comment.