diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2018-09-18 15:57:45 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2018-09-18 15:57:45 +0200 |
commit | 3bbc8c3c4cc8fd1f2bb1b2d553e3360f6a10111d (patch) | |
tree | d2c073b3c7945b9fae1ae1037b7b075693555672 /.travis.yml | |
parent | 7ee6774fb795c88bf7e26f64a30adfaaf89ac311 (diff) | |
download | Nim-3bbc8c3c4cc8fd1f2bb1b2d553e3360f6a10111d.tar.gz |
travis: fixes silly syntax mistakes
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 938b9503e..fc9814ca5 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 |