mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-12-25 20:12:14 +03:00
8 lines
164 B
Bash
Executable File
8 lines
164 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs > rustup.sh
|
|
sh rustup.sh -y
|
|
~/.cargo/bin/rustc --version
|
|
~/.cargo/bin/cargo --version
|
|
|