We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3cdbe7 commit 99b8f9cCopy full SHA for 99b8f9c
test/validations/special/duplicate-whitelist-cleanup.sh
@@ -3,11 +3,11 @@
3
TMPFILE=`mktemp /tmp/buffer.XXXXXXXX`
4
trap 'rm "$TMPFILE"' EXIT
5
6
-for host in `cat utils/duplicate-whitelist.txt`; do
+for host in `cat test/validations/special/duplicate-whitelist.txt`; do
7
REPEATS=`grep -F "target host=\"$host\"" src/chrome/content/rules/*.xml | wc -l`
8
if [ $REPEATS -gt 1 ]; then
9
echo $host
10
fi
11
done > $TMPFILE
12
13
-cp --force $TMPFILE utils/duplicate-whitelist.txt
+cp --force $TMPFILE test/validations/special/duplicate-whitelist.txt
0 commit comments