nextcloud-talk-android/scripts/checkGplayLimitation.sh
Andy Scherzinger b7fa83544c
add gplay check
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
2022-10-10 17:21:51 +02:00

13 lines
231 B
Bash
Executable file

#!/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";