From 4fe90f47a0fac509a0249443dd7f102eece07718 Mon Sep 17 00:00:00 2001 From: WolverinDEV Date: Tue, 1 Sep 2020 14:07:00 +0200 Subject: [PATCH] Removed the default triple host since the rust installer seems not to understand it --- scripts/install_dependencies.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install_dependencies.sh b/scripts/install_dependencies.sh index b0b5bab7..22ea98ad 100644 --- a/scripts/install_dependencies.sh +++ b/scripts/install_dependencies.sh @@ -38,7 +38,7 @@ install_rust() { rustup_version=$(rustup --version 2>/dev/null) if [[ $? -ne 0 ]]; then echo "> Missing rustup, installing..." - curl https://build.travis-ci.org/files/rustup-init.sh -sSf | sh -s -- -y --default-toolchain nightly --default-host wasm32-unknown-unknown + curl https://build.travis-ci.org/files/rustup-init.sh -sSf | sh -s -- -y --default-toolchain nightly # shellcheck disable=SC2181 [[ $? -ne 0 ]] && { echo "> Failed to install rustup"