diff options
author | jesusalva <cpntb1@ymail.com> | 2018-02-15 12:04:09 -0200 |
---|---|---|
committer | jesusalva <cpntb1@ymail.com> | 2018-02-15 12:04:09 -0200 |
commit | 98e98352cd618df6cb7557529a6a84b58ecdc95c (patch) | |
tree | 3029aef85abcf058062a1d1598cbd2a47e4c4f55 | |
parent | 342906dad69819ace6596e6e8036b1041d455d5d (diff) | |
download | tools-98e98352cd618df6cb7557529a6a84b58ecdc95c.tar.gz tools-98e98352cd618df6cb7557529a6a84b58ecdc95c.tar.bz2 tools-98e98352cd618df6cb7557529a6a84b58ecdc95c.tar.xz tools-98e98352cd618df6cb7557529a6a84b58ecdc95c.zip |
Force LICENSECHECK to check maps and JPG images
-rwxr-xr-x | licensecheck/clientdata.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/licensecheck/clientdata.sh b/licensecheck/clientdata.sh index 5abec23..fa08409 100755 --- a/licensecheck/clientdata.sh +++ b/licensecheck/clientdata.sh @@ -4,3 +4,6 @@ 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 {} \; +find -H $DIR -type f -name "*.tmx" -exec ./checkfile.sh $DIR/LICENSE {} \; +find -H $DIR -type f -name "*.jpg" -exec ./checkfile.sh $DIR/LICENSE {} \; + |