10 lines
105 B
Bash
10 lines
105 B
Bash
set -euxo pipefail
|
|
|
|
main() {
|
|
rustup target add $TARGET
|
|
|
|
cargo install cargo-edit || true
|
|
}
|
|
|
|
main
|