Skip to content

Commit

Permalink
TravisCI: Adds needed semicolon.
Browse files Browse the repository at this point in the history
  • Loading branch information
tgockel committed Sep 1, 2017
1 parent 62bc011 commit b0cf773
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ before_install:
- docker build config/docker/${DISTRO} -t dev/zookeeper-cpp/${DISTRO}
script:
- echo ${COVERALLS_REPO_TOKEN} > ${TRAVIS_BUILD_DIR}/coveralls-repo-token
- if [[ ${CONFIG} == "Debug" ]] then docker run -v ${TRAVIS_BUILD_DIR}:/root/zookeeper-cpp dev/zookeeper-cpp/${DISTRO}; fi
- if [[ ${CONFIG} == "Release" ]] then docker run -it -v ${TRAVIS_BUILD_DIR}:/root/zookeeper-cpp dev/zookeeper-cpp/${DISTRO} /root/zookeeper-cpp/config/make-package; fi
- if [[ ${CONFIG} == "Debug" ]]; then docker run -v ${TRAVIS_BUILD_DIR}:/root/zookeeper-cpp dev/zookeeper-cpp/${DISTRO}; fi
- if [[ ${CONFIG} == "Release" ]]; then docker run -it -v ${TRAVIS_BUILD_DIR}:/root/zookeeper-cpp dev/zookeeper-cpp/${DISTRO} /root/zookeeper-cpp/config/make-package; fi
after_success:
- if [[ ${DISTRO} != "ubuntu-16.04" ]]; then echo "Skipping documentation publishing due to non-main build environment"; exit 0; fi
- if [[ ${CONFIG} != "Debug" ]]; then echo "Skipp documentation publishing due to non-debug build"; exit 0; fi
Expand Down

0 comments on commit b0cf773

Please sign in to comment.