diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-05-12 18:47:33 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-05-12 18:47:33 -0300 |
commit | 6a343e058a776b1050773c53da583ac044df6f0f (patch) | |
tree | b469ef551024b75aa29a1d8f3365a3c0969bb0da /CI/licensecheck/clientdata.sh | |
parent | 59bc766bbbaba86d0424411f51e62778e5d37fef (diff) | |
download | tools-6a343e058a776b1050773c53da583ac044df6f0f.tar.gz tools-6a343e058a776b1050773c53da583ac044df6f0f.tar.bz2 tools-6a343e058a776b1050773c53da583ac044df6f0f.tar.xz tools-6a343e058a776b1050773c53da583ac044df6f0f.zip |
Add CI Utils. Add Updater. And add my analysis tool (wikigen)
Diffstat (limited to 'CI/licensecheck/clientdata.sh')
-rwxr-xr-x | CI/licensecheck/clientdata.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/CI/licensecheck/clientdata.sh b/CI/licensecheck/clientdata.sh new file mode 100755 index 0000000..583b197 --- /dev/null +++ b/CI/licensecheck/clientdata.sh @@ -0,0 +1,9 @@ +#!/usr/bin/env bash + +export DIR="../../client-data" + +find -H $DIR -type f -name "*.png" -exec ./checkfile.sh $DIR/LICENSE $DIR/ART_LICENSE {} \; +find -H $DIR/sfx -type f -name "*.ogg" -exec ./checkfile.sh $DIR/LICENSE $DIR/ART_LICENSE {} \; +find -H $DIR -type f -name "*.tmx" -exec ./checkfile.sh $DIR/LICENSE $DIR/ART_LICENSE {} \; +find -H $DIR -type f -name "*.jpg" -exec ./checkfile.sh $DIR/LICENSE $DIR/ART_LICENSE {} \; + |