Explorar o código

add gplay check

Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
Andy Scherzinger %!s(int64=2) %!d(string=hai) anos
pai
achega
b7fa83544c
Modificáronse 1 ficheiros con 13 adicións e 0 borrados
  1. 13 0
      scripts/checkGplayLimitation.sh

+ 13 - 0
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";