add gplay check

Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
This commit is contained in:
Andy Scherzinger 2022-10-10 17:21:51 +02:00
parent d7807f64d3
commit b7fa83544c
No known key found for this signature in database
GPG Key ID: 6CADC7E3523C308B

13
scripts/checkGplayLimitation.sh Executable file
View File

@ -0,0 +1,13 @@
#!/usr/bin/env bash
result=""
for log in fastlane/metadata/android/*/changelogs/*
do
if [[ -e $log && $(wc -m $log | cut -d" " -f1) -gt 500 ]]
then
result=$log"<br>"$result
fi
done
echo -e "$result";