From 08071bef74544b0e4905d509b94a12e64dd3811b Mon Sep 17 00:00:00 2001 From: david Date: Tue, 7 Aug 2018 18:45:47 +0200 Subject: FreeAMO: finalized the tmp variable --- subprojects/freeamo/src/main_functions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subprojects/freeamo/src/main_functions b/subprojects/freeamo/src/main_functions index 32aeab1..8e4907a 100644 --- a/subprojects/freeamo/src/main_functions +++ b/subprojects/freeamo/src/main_functions @@ -68,7 +68,7 @@ function do-locale { tmp__en_US=$(jq ".results[$entry].$locale_description" "$file" | sed "s|en-US|en_US|" | jq -r .en_US ) tmp__en_GB=$(jq ".results[$entry].$locale_description" "$file" | sed "s|en-GB|en_GB|" | jq -r .en_GB ) # Use the first avalible if English is not avaliable - tmp=$(jq -r ".results[$entry] | select(.$locale_description != null) | .$locale_description" "$file" | head -n 1) || [[ $? == 141 ]] # Avoid `head -n 1` error `returned 141` + tmp=$(jq -r ".results[$entry] | select(.$locale_description != null) | .$locale_description[]" "$file" | head -n 1) || [[ $? == 141 ]] # Avoid `head -n 1` error `returned 141` if [ "$tmp__en_US" != "null" ]; then -- cgit v1.2.3