Skip to content

Commit 306297f

Browse files
committed
Merge pull request #172 from brson/rustup-setup.sh
Fix the RUSTUP_UPDATE_ROOT value in rustup-setup.sh
2 parents b0eaaa9 + 7f811af commit 306297f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rustup-setup.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
set -u
1717

18-
RUSTUP_UPDATE_ROOT="https://github.com/rust-lang-nursery/multirust-rs-binaries/raw/master"
18+
RUSTUP_UPDATE_ROOT="https://static.rust-lang.org/rustup/dist"
1919

2020
main() {
2121
need_cmd curl
@@ -37,7 +37,7 @@ main() {
3737
;;
3838
esac
3939

40-
local _url="$RUSTUP_UPDATE_ROOT/$_arch/multirust-setup$_ext"
40+
local _url="$RUSTUP_UPDATE_ROOT/$_arch/rustup-setup$_ext"
4141

4242
local _dir="$(ensure mktemp -d)"
4343
local _file="$_dir/rustup-setup$_ext"

0 commit comments

Comments
 (0)