From 11b5ca497a6c83a18059fd6d7eb1cc924d94c69d Mon Sep 17 00:00:00 2001 From: Alex Crichton <alex@alexcrichton.com> Date: Sun, 13 Sep 2015 22:10:18 -0700 Subject: [PATCH] Fix MUSL script --- ci/run-travis.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/run-travis.sh b/ci/run-travis.sh index dcaa5566..b5b08442 100644 --- a/ci/run-travis.sh +++ b/ci/run-travis.sh @@ -18,7 +18,7 @@ if [ "$TARGET" = "arm-linux-androideabi" ]; then docker run -v `pwd`:/clone -t alexcrichton/rust-libc-test sh ci/run.sh $TARGET elif [ "$TARGET" = "x86_64-unknown-linux-musl" ]; then curl -sO https://people.mozilla.org/~acrichton/libc-test/2015-09-08/x86_64-unknown-linux-musl.tar.gz | \ - tar xzf -C $HOME/rust/lib/rustlib + tar xzf - -C $HOME/rust/lib/rustlib sh ci/run.sh $TARGET else # Download and install the relevant target locally, then run tests -- GitLab