fix permissions

This commit is contained in:
Bryan Housel
2017-07-01 09:13:14 -04:00
parent ee783a0f16
commit 8dd7644b20
2 changed files with 8 additions and 4 deletions

0
scripts/deploy.sh Normal file → Executable file
View File

12
scripts/txpush.sh Normal file → Executable file
View File

@@ -2,11 +2,15 @@
# This script runs on TravisCI to push new translation strings to transifex
echo $"TRAVIS"
echo $"TRAVIS_PULL_REQUEST"
echo $"TRAVIS_BRANCH"
echo "TRAVIS=$TRAVIS"
echo "TRAVIS_PULL_REQUEST=$TRAVIS_PULL_REQUEST"
echo "TRAVIS_BRANCH=$TRAVIS_BRANCH"
echo "TRAVIS_NODE_VERSION=$TRAVIS_NODE_VERSION"
if [[ "$TRAVIS" != "true" -o $"TRAVIS_PULL_REQUEST" != "false" -o "$TRAVIS_BRANCH" != "master" ]]; then exit 0; fi
if [[ "$TRAVIS" != "true" ]]; then exit 0; fi
if [[ "$TRAVIS_PULL_REQUEST" != "false" ]]; then exit 0; fi
if [[ "$TRAVIS_BRANCH" != "master" ]]; then exit 0; fi
if [[ "$TRAVIS_NODE_VERSION" != "6" ]]; then exit 0; fi
echo "Pushing source strings to Transifex..."
pip install virtualenv