From 3bbc8c3c4cc8fd1f2bb1b2d553e3360f6a10111d Mon Sep 17 00:00:00 2001 From: Andreas Rumpf Date: Tue, 18 Sep 2018 15:57:45 +0200 Subject: [PATCH] travis: fixes silly syntax mistakes --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 938b9503e7..fc9814ca5f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -45,8 +45,8 @@ script: #- nimble install niminst - nim c --taintMode:on -d:nimCoroutines tests/testament/tester # Do not run the tests on OSX as OSX does 'testinstall' which *also* runs all the tests! - - if [[ "$TRAVIS_OS_NAME" != "osx" ]]; tests/testament/tester --pedantic all -d:nimCoroutines - - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; ./koch testinstall + - if [[ "$TRAVIS_OS_NAME" != "osx" ]]; then tests/testament/tester --pedantic all -d:nimCoroutines; fi + - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then ./koch testinstall; fi - nim c -o:bin/nimpretty nimpretty/nimpretty.nim - nim c -r nimpretty/tester.nim - ./koch docs