blob: 96c9c5d7d037e1479bbb44602b80ff22cfc70416 (
plain) (
blame)
1
2
3
4
5
6
7
|
#!/usr/bin/env bash
# https://github.com/ogham/exa/blob/dc5c42a0f240a52f5b102cf965b98ecc2bc328c2/Vagrantfile#L55
echo ">>> Installing Rust"
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- --profile minimal --component rustc,rust-std,cargo,clippy -y > /dev/null
source $HOME/.cargo/env
|