Skip to content

Commit

Permalink
Get Transifex submissions working again
Browse files Browse the repository at this point in the history
transifex-client was removed from requirements.txt as it isn't
compatible with Python 3. That silently broke submitting new strings to
Transifex via Travis, as the client was never installed.
  • Loading branch information
maiksprenger committed Feb 27, 2014
1 parent a7fde5f commit ff4ef00
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion transifex.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@

# only run once, and only on master
echo $TRAVIS_JOB_NUMBER | grep "\.1$"
if [ $? -eq 0 ] && [ $TRAVIS_BRANCH == master ]
if [ $? -eq 0 ]
then
make messages
pip install transifex-client
# write .transifexrc file
echo "[https://www.transifex.com]
hostname = https://www.transifex.com
Expand Down

0 comments on commit ff4ef00

Please sign in to comment.