mirror of
https://github.com/notohh/rustlings.git
synced 2024-11-22 14:02:22 -05:00
4972bede48
Signed-off-by: Emmanuel Roullit <emmanuel.roullit@gmail.com>
7 lines
191 B
Bash
Executable file
7 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
|