1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-07-08 12:57:57 +02:00
uBlock/assets/update-checksums.sh
2014-06-23 19:36:45 -04:00

16 lines
332 B
Bash
Executable File

#!/bin/bash
#
# 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."