Modding dupe check to remove the known replit.com site

This commit is contained in:
WebBreacher 2023-09-05 16:14:05 -04:00
parent fea0820e34
commit 6c89ebc327

View File

@ -10,5 +10,5 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Check for duplicate in new JSON
run: if [ $(grep "uri_check" wmn-data.json | cut -f4 -d'"' | uniq -D | head -1) ]; then echo "Found duplicate in wmn-data.json!"; exit 1; else echo "No duplicates found"; fi
run: if [ $(grep "uri_check" wmn-data.json | cut -f4 -d'"' | grep -v "replit.com" | uniq -D | head -1) ]; then echo "Found duplicate in wmn-data.json!"; exit 1; else echo "No duplicates found"; fi
shell: bash