Explorar el Código

add gplay check

Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
Andy Scherzinger hace 2 años
padre
commit
b7fa83544c
Se han modificado 1 ficheros con 13 adiciones y 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";