mirror of
https://github.com/rust-lang/rustlings
synced 2024-11-03 03:40:13 +00:00
4972bede48
Signed-off-by: Emmanuel Roullit <emmanuel.roullit@gmail.com>
8 lines
191 B
Bash
Executable File
8 lines
191 B
Bash
Executable File
#!/bin/bash
|
|
curl https://sh.rustup.rs -sSf | sh -s -- -y
|
|
|
|
# Update current shell environment variables after install to find rustup
|
|
. "$HOME/.cargo/env"
|
|
rustup install stable
|
|
bash install.sh
|