123456789101112131415161718192021222324252627 |
- sudo: required
-
- before_install:
- - plugin_name=${PWD##*/} && echo $plugin_name
- - chmod -R 777 .
-
-
-
-
-
-
-
-
- after_success:
- - pip install virtualenv
- - virtualenv ~/env
- - source ~/env/bin/activate
- - pip install transifex-client
- - sudo echo $'[https://www.transifex.com]\nhostname = https://www.transifex.com\nusername = '"$TRANSIFEX_USER"$'\npassword = '"$TRANSIFEX_PASSWORD"$'\ntoken = '"$TRANSIFEX_API_TOKEN"$'\n' > ~/.transifexrc
- - tx push -s
|