From a88b229ff9b17d38a29e897ac2708c7daf0565a6 Mon Sep 17 00:00:00 2001 From: Joseph Flinn Date: Wed, 12 May 2021 15:32:40 -0700 Subject: [PATCH] moving the message out of the loop --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7ce4e5f1ae..69697ec8f7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -65,11 +65,11 @@ jobs: - name: Testing locale lengths run: | errors=0 + echo "Testing locales extName lengths" + echo "All must be 40 or less for Safari" + echo "=================================" for file in $(ls src/_locales/); do - echo "Testing locales extName lengths" - echo "All must be 40 or less for Safari" - echo "=================================" test_string=$(cat src/_locales/$file/messages.json | jq .extName.message | tr -d '"') if [[ ${#test_string} -gt 40 ]]; then echo $file: ${#test_string}