|
From: Kouhei S. <nul...@cl...> - 2014-02-08 10:13:28
|
Kouhei Sutou 2014-02-08 19:13:10 +0900 (Sat, 08 Feb 2014) New Revision: f57f079cc41cb2689dbb65bfdd34ab272588ffe8 https://github.com/clear-code/cutter/commit/f57f079cc41cb2689dbb65bfdd34ab272588ffe8 Message: travis: remove needless ";" Modified files: .travis.yml Modified: .travis.yml (+2 -2) =================================================================== --- .travis.yml 2014-02-08 19:11:15 +0900 (7339102) +++ .travis.yml 2014-02-08 19:13:10 +0900 (8ac4f69) @@ -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 - - if test "$ENABLE_COVERAGE" = "yes"; then; sudo pip install cpp-coveralls; fi + - 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: - - if test "$ENABLE_COVERAGE" = "yes"; then; coveralls --exclude test; fi + - if test "$ENABLE_COVERAGE" = "yes"; then coveralls --exclude test; fi |