|
From: Kouhei S. <nul...@cl...> - 2014-02-08 10:03:15
|
Kouhei Sutou 2014-02-08 19:02:57 +0900 (Sat, 08 Feb 2014) New Revision: 4bbfb36a6e09d24a9f4d4cd8ef7ca1f413f68bb4 https://github.com/clear-code/cutter/commit/4bbfb36a6e09d24a9f4d4cd8ef7ca1f413f68bb4 Message: travis: use if Modified files: .travis.yml Modified: .travis.yml (+2 -2) =================================================================== --- .travis.yml 2014-02-08 19:00:28 +0900 (1a37f69) +++ .travis.yml 2014-02-08 19:02:57 +0900 (7339102) @@ -11,12 +11,12 @@ env: install: - sudo apt-get update -qq -y - sudo apt-get install -qq -y autotools-dev intltool gtk-doc-tools libgtk2.0-dev libgoffice-0.8-dev libgstreamer0.10-dev libsoup2.4-dev - - test "$ENABLE_COVERAGE" = "yes" && sudo pip install cpp-coveralls + - if test "$ENABLE_COVERAGE" = "yes"; then; sudo pip install cpp-coveralls; fi before_script: - ./autogen.sh - ./configure ${CONFIGURE_OPTIONS} script: - test/run-test.sh after_success: - - test "$ENABLE_COVERAGE" = "yes" && coveralls --exclude test + - if test "$ENABLE_COVERAGE" = "yes"; then; coveralls --exclude test; fi |