Skip to content

Commit 2249d94

Browse files
committed
macos...
1 parent 2dba78f commit 2249d94

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

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

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,13 @@ jobs:
1818
run: /opt/homebrew/opt/llvm@18/bin/clang++ -E -x c++ - -v < /dev/null
1919
- name: Grep /Library/Developer/CommandLineTools/SDKs/MacOSX15.sdk/usr/include
2020
if: always()
21-
run: find /Library/Developer/CommandLineTools/SDKs/MacOSX15.sdk/usr/include -type f -exec grep "ip_mreq" {} \;
22-
#run: grep -R "ip_mreq" /Library/Developer/CommandLineTools/SDKs/MacOSX15.sdk/usr/include
21+
run: grep -Rn "ip_mreq" /Library/Developer/CommandLineTools/SDKs/MacOSX15.sdk/usr/include
2322
- name: Grep /Library/Developer/CommandLineTools/SDKs/MacOSX15.sdk/System/Library/Frameworks
2423
if: always()
25-
run: grep -R "ip_mreq" /Library/Developer/CommandLineTools/SDKs/MacOSX15.sdk/System/Library/Frameworks
24+
run: grep -Rn "ip_mreq" /Library/Developer/CommandLineTools/SDKs/MacOSX15.sdk/System/Library/Frameworks
2625
- name: Grep /opt/homebrew/opt/llvm@18/include/c++/v1
2726
if: always()
28-
run: grep -R "ip_mreq" "/opt/homebrew/opt/llvm@18/include/c++/v1"
27+
run: grep -Rn "ip_mreq" "/opt/homebrew/opt/llvm@18/include/c++/v1"
2928
- name: Grep /opt/homebrew/Cellar/llvm@18/18.1.8/lib/clang/18/include
3029
if: always()
31-
run: grep -R "ip_mreq" "/opt/homebrew/Cellar/llvm@18/18.1.8/lib/clang/18/include"
30+
run: grep -Rn "ip_mreq" "/opt/homebrew/Cellar/llvm@18/18.1.8/lib/clang/18/include"

0 commit comments

Comments
 (0)