mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-22 15:42:20 +03:00
12 lines
223 B
Bash
Executable File
12 lines
223 B
Bash
Executable File
#!/bin/bash
|
|
set -Eeuo pipefail
|
|
|
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs > rustup.sh
|
|
sh rustup.sh -y
|
|
# shellcheck source=/dev/null
|
|
PATH="$HOME/.cargo/bin:$PATH"
|
|
export PATH
|
|
rustc --version
|
|
cargo --version
|
|
|