Skip to content

Commit c42aa8e

Browse files
Update grep command to exclude server.js
Exclude server.js from phishing domain scan results.
1 parent 02ed074 commit c42aa8e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/phishdestroy-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
- name: Scan source for phishing domains
1616
run: |
17-
grep --binary-files=without-match --exclude=destroylist_matches.txt -rFf destroylist.txt . > destroylist_matches.txt || true
17+
grep --binary-files=without-match --exclude=destroylist_matches.txt --exclude=server.js -rFf destroylist.txt . > destroylist_matches.txt || true
1818
if [ -s destroylist_matches.txt ]; then
1919
echo "Phishing domains found in repo! Showing the first 20 matches:"
2020
head -n 20 destroylist_matches.txt

0 commit comments

Comments
 (0)