diff options
Diffstat (limited to 'CI/licensecheck/clientdata.sh')
-rwxr-xr-x | CI/licensecheck/clientdata.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/CI/licensecheck/clientdata.sh b/CI/licensecheck/clientdata.sh index 583b197..c5d96e1 100755 --- a/CI/licensecheck/clientdata.sh +++ b/CI/licensecheck/clientdata.sh @@ -1,9 +1,9 @@ #!/usr/bin/env bash -export DIR="../../client-data" +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 {} \; +find -H $DIR -type f -name "*.png" -exec ./checkfile.sh $DIR/LICENSE $DIR/license.md {} \; +find -H $DIR/sfx -type f -name "*.ogg" -exec ./checkfile.sh $DIR/LICENSE $DIR/license.md {} \; +find -H $DIR -type f -name "*.tmx" -exec ./checkfile.sh $DIR/LICENSE $DIR/license.md {} \; +find -H $DIR -type f -name "*.jpg" -exec ./checkfile.sh $DIR/LICENSE $DIR/license.md {} \; |