Skip to content

Commit 99b8f9c

Browse files
committed
Change duplicate-whitelist-cleanup.sh to reflect new location of duplicate-whitelist.txt
1 parent a3cdbe7 commit 99b8f9c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/validations/special/duplicate-whitelist-cleanup.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
TMPFILE=`mktemp /tmp/buffer.XXXXXXXX`
44
trap 'rm "$TMPFILE"' EXIT
55

6-
for host in `cat utils/duplicate-whitelist.txt`; do
6+
for host in `cat test/validations/special/duplicate-whitelist.txt`; do
77
REPEATS=`grep -F "target host=\"$host\"" src/chrome/content/rules/*.xml | wc -l`
88
if [ $REPEATS -gt 1 ]; then
99
echo $host
1010
fi
1111
done > $TMPFILE
1212

13-
cp --force $TMPFILE utils/duplicate-whitelist.txt
13+
cp --force $TMPFILE test/validations/special/duplicate-whitelist.txt

0 commit comments

Comments
 (0)