From 7d426b552c98aa8e3281570b8271ba39b1219b07 Mon Sep 17 00:00:00 2001 From: Jeremy Soller <jackpot51@gmail.com> Date: Mon, 27 Mar 2017 20:31:50 -0600 Subject: [PATCH] Fixes for setup script --- setup.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/setup.sh b/setup.sh index 376aef197..c6ada9c29 100755 --- a/setup.sh +++ b/setup.sh @@ -1,9 +1,13 @@ #!/bin/bash - set -e +echo "Downloading latest libc-artifacts" +git submodule update --init --remote libc-artifacts + echo "Defaulting to rust nightly" rustup override set nightly +echo "Update rust nightly" +rustup update nightly echo "Downloading rust source" rustup component add rust-src if [ -z "$(which xargo)" ] -- GitLab