Repository: celix Updated Branches: refs/heads/feature/CELIX-335_deploy_refactoring d7ae9b5b8 -> de7915aaa
CELIX-335: Fix error in travis.yml Project: http://git-wip-us.apache.org/repos/asf/celix/repo Commit: http://git-wip-us.apache.org/repos/asf/celix/commit/de7915aa Tree: http://git-wip-us.apache.org/repos/asf/celix/tree/de7915aa Diff: http://git-wip-us.apache.org/repos/asf/celix/diff/de7915aa Branch: refs/heads/feature/CELIX-335_deploy_refactoring Commit: de7915aaa810d3d539b7bcde31aa45f4a22b5d53 Parents: d7ae9b5 Author: Pepijn Noltes <[email protected]> Authored: Thu Jan 14 17:42:56 2016 +0100 Committer: Pepijn Noltes <[email protected]> Committed: Thu Jan 14 17:42:56 2016 +0100 ---------------------------------------------------------------------- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/celix/blob/de7915aa/.travis.yml ---------------------------------------------------------------------- diff --git a/.travis.yml b/.travis.yml index 3d50f61..8cfddf8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -38,7 +38,8 @@ before_script: - sudo make install - cd - - mkdir build install - - if [ "${BUILD_SYSTEM}" = "make" ] then export BUILD_CMD=make; export BUILD_GEN=""; else export BUILD_CMD=ninja; export BUILD_GEN="-G Ninja"; fi + - if [ "${BUILD_SYSTEM}" = "make" ]; then export BUILD_CMD=make; export BUILD_GEN=""; + - if [ "${BUILD_SYSTEM}" = "ninja"]; then export BUILD_CMD=ninja; export BUILD_GEN="-G Ninja"; fi script:
