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
|