7 lines
272 B
Bash
Executable File
7 lines
272 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
echo "Installing Rust toolchain..."
|
|
rustup default stable
|
|
curl -L --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/cargo-bins/cargo-binstall/main/install-from-binstall-release.sh | bash
|
|
cargo binstall --no-confirm cargo-watch cargo-get
|