blob: 5abec23fe92f3922030994bdfe004ae48f79a1d4 (
plain) (
blame)
1
2
3
4
5
6
|
#!/usr/bin/env bash
export DIR="../../client-data"
find -H $DIR -type f -name "*.png" -exec ./checkfile.sh $DIR/LICENSE {} \;
find -H $DIR/sfx -type f -name "*.ogg" -exec ./checkfile.sh $DIR/LICENSE {} \;
|