Skip to content

Commit

Permalink
fix permissions
Browse files Browse the repository at this point in the history
  • Loading branch information
bhousel committed Jul 1, 2017
1 parent ee783a0 commit 8dd7644
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
Empty file modified scripts/deploy.sh
100644 → 100755
Empty file.
12 changes: 8 additions & 4 deletions scripts/txpush.sh
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8dd7644

Please sign in to comment.