From ba1cbf8a8055fd6614bf9ac3508010305dd753c7 Mon Sep 17 00:00:00 2001 From: Benoit Marty Date: Tue, 5 Dec 2023 12:25:46 +0100 Subject: [PATCH] Rename the folders values-id to values-in --- tools/localazy/downloadStrings.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tools/localazy/downloadStrings.sh b/tools/localazy/downloadStrings.sh index bc00488258..95ec7c5c13 100755 --- a/tools/localazy/downloadStrings.sh +++ b/tools/localazy/downloadStrings.sh @@ -46,6 +46,11 @@ if [[ $allFiles == 1 ]]; then find . -name 'translations.xml' -print0 -exec bash -c "echo \"\" >> \"{}\"" \; >> /dev/null fi +echo "Renaming all the folders values-id to values-in..." +set +e +find . -type d -name 'values-id' -execdir mv {} values-in 2> /dev/null \; +set -e + echo "Removing the generated config" rm ./tools/localazy/localazy.json