Skip to content

Commit

Permalink
Fix missing quotes on translations pulling
Browse files Browse the repository at this point in the history
  • Loading branch information
sergioisidoro committed Feb 28, 2020
1 parent 561fa86 commit 8c9afb2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

echo $config > ~/.transifexrc

if [ "$PUSH_SOURCES" = true ] ; then
if [ "$PUSH_SOURCES" = true ] ; then
echo "PUSHING SOURCES"
tx push -s
fi
Expand All @@ -17,7 +17,7 @@ if [ "$PULL_SOURCES" = true ] ; then
tx pull -s
fi

if [ $PULL_TRANSLATIONS = true ] ; then
if [ "$PULL_TRANSLATIONS" = true ] ; then
echo "PULLING TRANSLATIONS"
tx pull -a
fi

0 comments on commit 8c9afb2

Please sign in to comment.