mirror of
https://github.com/nextcloud/talk-android
synced 2025-01-18 13:16:15 +00:00
add gplay check
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
This commit is contained in:
parent
d7807f64d3
commit
b7fa83544c
13
scripts/checkGplayLimitation.sh
Executable file
13
scripts/checkGplayLimitation.sh
Executable 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";
|
Loading…
Reference in New Issue
Block a user