Browse Source

Fix warning: more redirection to end.

pull/3008/head
Benoit Marty 3 months ago
parent
commit
89e0d94d86
  1. 4
      tools/localazy/downloadStrings.sh

4
tools/localazy/downloadStrings.sh

@ -51,10 +51,10 @@ fi @@ -51,10 +51,10 @@ fi
set +e
echo "Moving files from values-id to values-in..."
find . -type d -name 'values-id' -execdir mv {}/translations.xml {}/../values-in/translations.xml 2> /dev/null \;
find . -type d -name 'values-id' -execdir mv {}/translations.xml {}/../values-in/translations.xml \; 2> /dev/null
echo "Deleting all the folders values-id..."
find . -type d -name 'values-id' -exec rm -rf {} 2> /dev/null \;
find . -type d -name 'values-id' -exec rm -rf {} \; 2> /dev/null
set -e
echo "Checking forbidden terms..."

Loading…
Cancel
Save