Skip to content

Commit 52e60d9

Browse files
committed
macos...
1 parent 92a0aeb commit 52e60d9

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

.github/workflows/macos-grep-headers.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,11 @@ jobs:
1616
steps:
1717
- name: Print include paths
1818
run: /opt/homebrew/opt/llvm@18/bin/clang++ -E -x c++ - -v < /dev/null
19-
- name: Grep Random
20-
run: grep
2119
- name: Grep /opt/homebrew/opt/llvm@18/include/c++/v1
22-
run: grep -r "ip_mreq" "/opt/homebrew/opt/llvm@18/include/c++/v1"
20+
run: grep -R "ip_mreq" "/opt/homebrew/opt/llvm@18/include/c++/v1"
2321
- name: Grep /opt/homebrew/Cellar/llvm@18/18.1.8/lib/clang/18/include
24-
run: grep -r "ip_mreq" "/opt/homebrew/Cellar/llvm@18/18.1.8/lib/clang/18/include"
22+
run: grep -R "ip_mreq" "/opt/homebrew/Cellar/llvm@18/18.1.8/lib/clang/18/include"
2523
- name: Grep /Library/Developer/CommandLineTools/SDKs/MacOSX15.sdk/usr/include
26-
run: grep -r "ip_mreq" /Library/Developer/CommandLineTools/SDKs/MacOSX15.sdk/usr/include
24+
run: grep -R "ip_mreq" /Library/Developer/CommandLineTools/SDKs/MacOSX15.sdk/usr/include
2725
- name: Grep /Library/Developer/CommandLineTools/SDKs/MacOSX15.sdk/System/Library/Frameworks
28-
run: grep -r "ip_mreq" /Library/Developer/CommandLineTools/SDKs/MacOSX15.sdk/System/Library/Frameworks
29-
26+
run: grep -R "ip_mreq" /Library/Developer/CommandLineTools/SDKs/MacOSX15.sdk/System/Library/Frameworks

0 commit comments

Comments
 (0)