diff options
| author | Oskari Timperi <oswjk@users.noreply.github.com> | 2019-06-24 21:32:17 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-06-24 21:32:17 +0300 |
| commit | 32a6de11389aca631435f78aa5be0857053a8a9d (patch) | |
| tree | 4a7d3859bf816bc9e773eba964f1cdc386b55a23 | |
| parent | eab5057957ce5c40ec5501f49ea0b02c9f7f9d96 (diff) | |
| parent | d57ef66a6f3b09226de0cdc7a925e7eaa5c4140a (diff) | |
| download | nimpb-32a6de11389aca631435f78aa5be0857053a8a9d.tar.gz nimpb-32a6de11389aca631435f78aa5be0857053a8a9d.zip | |
Merge pull request #14 from oswjk/fix-travis
Fix travis build
| -rw-r--r-- | .travis.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 7e6d732..9d690c7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -23,7 +23,8 @@ install: if [ ! -x nim-$nim_branch/bin/nim ]; then git clone -b $nim_branch --depth 1 git://github.com/nim-lang/nim nim-$nim_branch/ cd nim-$nim_branch - git clone -b $nim_branch --depth 1 git://github.com/nim-lang/csources csources/ + # https://github.com/nim-lang/Nim/issues/11454 + git clone -b v0.19.0 --depth 1 git://github.com/nim-lang/csources csources/ cd csources sh build.sh cd .. |
