Ignore errors when moving files from values-id to values-in
This commit is contained in:
parent
1e3c0f319a
commit
376a3d923d
1 changed files with 1 additions and 1 deletions
|
|
@ -51,7 +51,7 @@ fi
|
||||||
|
|
||||||
set +e
|
set +e
|
||||||
echo "Moving files from values-id to values-in..."
|
echo "Moving files from values-id to values-in..."
|
||||||
find . -type d -name 'values-id' -execdir mv {}/translations.xml {}/../values-in/translations.xml \;
|
find . -type d -name 'values-id' -execdir mv {}/translations.xml {}/../values-in/translations.xml 2> /dev/null \;
|
||||||
|
|
||||||
echo "Deleting all the folders values-id..."
|
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 \;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue