1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-07-08 12:57:57 +02:00

moving update checksums script to tools

This commit is contained in:
gorhill 2015-12-16 11:25:40 -05:00
parent 5a47c95b2c
commit 57b037be18

View File

@ -3,13 +3,10 @@
# This script assumes a linux environment
echo "*** uBlock: generating checksums.txt file..."
pushd ..
truncate -s 0 assets/checksums.txt
LIST="$(find assets/ublock assets/thirdparties -type f)"
for ENTRY in $LIST; do
echo `md5sum $ENTRY` >> assets/checksums.txt
done
popd
echo "*** uBlock: checksums updated."