You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
323 B

10 years ago
10 years ago
10 years ago
10 years ago
  1. #!/bin/bash
  2. #
  3. # This script assumes a linux environment
  4. echo "*** µMatrix: generating checksums.txt file..."
  5. truncate -s 0 assets/checksums.txt
  6. LIST="$(find assets/umatrix assets/thirdparties -type f)"
  7. for ENTRY in $LIST; do
  8. echo `md5sum $ENTRY` >> assets/checksums.txt
  9. done
  10. echo "*** µMatrix: checksums updated."