Skip to content

Commit

Permalink
Normalize variable usage in travis.yml. (#1720)
Browse files Browse the repository at this point in the history
  • Loading branch information
greylabel authored and grasmash committed Jun 23, 2017
1 parent 27da265 commit cd2dcf5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions scripts/travis/.travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,26 +54,26 @@ before_install:

install:
- source ${BLT_DIR}/scripts/travis/setup_environment
- source $BLT_DIR/scripts/travis/setup_project
- source ${BLT_DIR}/scripts/travis/setup_project

script:
- source $BLT_DIR/scripts/travis/run_tests
- source ${BLT_DIR}/scripts/travis/run_tests

deploy:
- provider: script
script: "$BLT_DIR/scripts/travis/deploy_branch"
script: "${BLT_DIR}/scripts/travis/deploy_branch"
skip_cleanup: true
on:
branch: develop
php: 5.6
- provider: script
script: "$BLT_DIR/scripts/travis/deploy_branch"
script: "${BLT_DIR}/scripts/travis/deploy_branch"
skip_cleanup: true
on:
branch: master
php: 5.6
- provider: script
script: "$BLT_DIR/scripts/travis/deploy_tag"
script: "${BLT_DIR}/scripts/travis/deploy_tag"
skip_cleanup: true
on:
tags: true
Expand Down

0 comments on commit cd2dcf5

Please sign in to comment.