Skip to content

Commit 804c0de

Browse files
committed
1234
1 parent ab32d5c commit 804c0de

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ jobs:
1717
- name: Print include paths
1818
run: /opt/homebrew/opt/llvm@18/bin/clang++ -E -x c++ - -v < /dev/null
1919
- name: Grep /opt/homebrew/opt/llvm@18/include/c++/v1
20-
run: grep -r -A 10 -B 10 "ip_mreq" "/opt/homebrew/opt/llvm@18/include/c++/v1"
20+
run: grep -r "ip_mreq" "/opt/homebrew/opt/llvm@18/include/c++/v1"
2121
- name: Grep /opt/homebrew/Cellar/llvm@18/18.1.8/lib/clang/18/include
22-
run: grep -r -A 10 -B 10 "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"
2323
- name: Grep /Library/Developer/CommandLineTools/SDKs/MacOSX15.sdk/usr/include
24-
run: grep -r -A 10 -B 10 "ip_mreq" /Library/Developer/CommandLineTools/SDKs/MacOSX15.sdk/usr/include
24+
run: grep -r "ip_mreq" /Library/Developer/CommandLineTools/SDKs/MacOSX15.sdk/usr/include
2525
- name: Grep /Library/Developer/CommandLineTools/SDKs/MacOSX15.sdk/System/Library/Frameworks
26-
run: grep -r -A 10 -B 10 "ip_mreq" /Library/Developer/CommandLineTools/SDKs/MacOSX15.sdk/System/Library/Frameworks
26+
run: grep -r "ip_mreq" /Library/Developer/CommandLineTools/SDKs/MacOSX15.sdk/System/Library/Frameworks
2727

0 commit comments

Comments
 (0)