Files
linux-workspace/install/rust.sh
2024-09-01 16:24:15 +02:00

11 lines
226 B
Bash
Executable File

#!/bin/bash
# https://www.rust-lang.org/tools/install
set -E -o errexit -o nounset -o pipefail
sudo apt install curl -y
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
source "$HOME/.cargo/env"
rustup update