Skip to content

Commit

Permalink
Merge pull request #41 from kdambekalns/fix-true-use
Browse files Browse the repository at this point in the history
BUGFIX: Wrong use of true to ignore exit code in sync-crowdin.sh
  • Loading branch information
kdambekalns committed Dec 31, 2017
2 parents 9c9c6fd + 7b5e383 commit a58904a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Build/sync-crowdin.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ php Build/BuildEssentials/Crowdin/Teardown.php `pwd`/crowdin.json
cd Packages/Framework
echo 'Commit and push to Framework'
git ls-files -o | grep 'Translations' | xargs git add
git commit -am 'TASK: Update translations from translation tool' || exit true
git commit -am 'TASK: Update translations from translation tool' || true
git pull --rebase
git config push.default simple
git push origin
Expand All @@ -41,7 +41,7 @@ cd -
cd Packages/Neos
echo 'Commit and push to Neos'
git ls-files -o | grep 'Translations' | xargs git add
git commit -am 'TASK: Update translations from translation tool' || exit true
git commit -am 'TASK: Update translations from translation tool' || true
git pull --rebase
git config push.default simple
git push origin
Expand Down

0 comments on commit a58904a

Please sign in to comment.