You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
323 B
Bash
14 lines
323 B
Bash
#!/bin/bash
|
|
#
|
|
# This script assumes a linux environment
|
|
|
|
echo "*** µMatrix: generating checksums.txt file..."
|
|
truncate -s 0 assets/checksums.txt
|
|
LIST="$(find assets/umatrix assets/thirdparties -type f)"
|
|
for ENTRY in $LIST; do
|
|
echo `md5sum $ENTRY` >> assets/checksums.txt
|
|
done
|
|
|
|
echo "*** µMatrix: checksums updated."
|
|
|