mirror of
https://github.com/WebBreacher/WhatsMyName.git
synced 2025-06-18 14:25:31 -04:00
Modding dupe check to remove the known replit.com site
This commit is contained in:
parent
fea0820e34
commit
6c89ebc327
2
.github/workflows/check-for-dupe-url.yml
vendored
2
.github/workflows/check-for-dupe-url.yml
vendored
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user