diff options
author | Aman Gupta <aman@tmm1.net> | 2015-09-29 15:42:45 -0700 |
---|---|---|
committer | Aman Gupta <aman@tmm1.net> | 2015-09-29 15:42:45 -0700 |
commit | 243e66596554bdd318ff26f15b377403ea1fee6a (patch) | |
tree | b340dfd8386813896d8e662b27f4662e475e885b | |
parent | 980db2f4407a21b1ca59926a3318479aedfa7e37 (diff) | |
download | Nim-243e66596554bdd318ff26f15b377403ea1fee6a.tar.gz |
fix current directory
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 2509c0b97..6a04c4c93 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,9 @@ language: c os: linux script: - git clone --depth 1 https://github.com/nim-lang/csources.git - - cd csources && sh build.sh + - cd csources + - sh build.sh + - cd .. - ./bin/nim c koch - ./koch boot - ./koch boot -d:release |