Merge branch 'develop' into feature/bma/emojiRepresentation

This commit is contained in:
Benoit Marty 2023-12-08 19:51:07 +01:00
commit 5ea809e2de
51 changed files with 65 additions and 20 deletions

View file

@ -46,9 +46,12 @@ 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 \;
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 \;
echo "Deleting all the folders values-id..."
find . -type d -name 'values-id' -exec rm -rf {} 2> /dev/null \;
set -e
echo "Removing the generated config"