8000 fix .travis.yml to download a tarball of the 'default' branch, not th… · tempbottle/pythonvm-rust@fba782d · GitHub
[go: up one dir, main page]

Skip to content

Commit fba782d

Browse files
committed
fix .travis.yml to download a tarball of the 'default' branch, not the tip (which may be an older version).
1 parent bf4afa1 commit fba782d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ rust:
44
- beta
55
- nightly
66
before_script:
7-
- wget https://hg.python.org/cpython/archive/tip.tar.bz2
8-
- tar -xf tip.tar.bz2
7+
- wget https://hg.python.org/cpython/archive/default.tar.bz2
8+
- tar -xf default.tar.bz2
99
- cd cpython-*
1010
- ./configure --prefix=$HOME/.local/
1111
- make -j 2

0 commit comments

Comments
 (0)
0