From b7fa83544cc5c68220b7d4fa2d0168a8d6edd993 Mon Sep 17 00:00:00 2001 From: Andy Scherzinger Date: Mon, 10 Oct 2022 17:21:51 +0200 Subject: add gplay check Signed-off-by: Andy Scherzinger --- scripts/checkGplayLimitation.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 scripts/checkGplayLimitation.sh (limited to 'scripts') 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"
"$result + fi +done + +echo -e "$result"; -- cgit v1.2.3