mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-13 01:02:58 +00:00
fix permissions
This commit is contained in:
0
scripts/deploy.sh
Normal file → Executable file
0
scripts/deploy.sh
Normal file → Executable file
12
scripts/txpush.sh
Normal file → Executable file
12
scripts/txpush.sh
Normal file → Executable 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
|
||||
|
||||
Reference in New Issue
Block a user