Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/talk-android.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/checkGplayLimitation.sh13
1 files changed, 13 insertions, 0 deletions
diff --git a/scripts/checkGplayLimitation.sh b/scripts/checkGplayLimitation.sh
new file mode 100755
index 000000000..de4ed0bb3
--- /dev/null
+++ b/scripts/checkGplayLimitation.sh
@@ -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";