We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20c3fea commit a34d57fCopy full SHA for a34d57f
.github/workflows/partials-audit.yml
@@ -47,7 +47,7 @@ jobs:
47
# --- END LOGGING ---
48
49
# Use a chained grep to find lines containing BOTH strings, regardless of order
50
- if ! grep -q -r --exclude-dir=.github "$SEARCH_PRODUCT" --include="*.mdx" . | grep -q "$SEARCH_FILE"; then
+ if ! grep -q -r --exclude-dir=.github --include="*.mdx" -e "$SEARCH_PRODUCT" -e "$SEARCH_FILE" .; then
51
UNUSED_FILES+="$FILE\n"
52
echo " -> UNUSED! Adding to list."
53
else
0 commit comments