Files
embedded-rs/ci/install.sh
2018-04-24 01:24:06 +02:00

10 lines
105 B
Bash

set -euxo pipefail
main() {
rustup target add $TARGET
cargo install cargo-edit || true
}
main