blob: 016952bd087cd6b43dfc99045548d102bbce0dd4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#!/bin/bash
export DIR="../../client-data"
echo Checking png files
find $DIR -type f -name "*.png" -exec ./checkfile.sh $DIR/LICENSE {} \;
echo Checking ogg files
find $DIR/sfx -type f -name "*.ogg" -exec ./checkfile.sh $DIR/LICENSE {} \;
|