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.

15 lines
352 B

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