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:
authorAndy Scherzinger <info@andy-scherzinger.de>2022-10-10 18:21:51 +0300
committerAndy Scherzinger <info@andy-scherzinger.de>2022-10-10 18:21:51 +0300
commitb7fa83544cc5c68220b7d4fa2d0168a8d6edd993 (patch)
tree875b37e5c58bf1ab12492e597fdfab266255e7ca /scripts
parentd7807f64d37e16adf4f93c1b5649a83a243bca4d (diff)
add gplay check
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
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";