diff options
author | 2018-04-08 22:45:15 +0200 | |
---|---|---|
committer | 2018-04-08 22:45:15 +0200 | |
commit | 2c8ca9d6c49b47885ad9010a4de98817b9c85ff0 (patch) | |
tree | 8fbe8eabd39be79c133a67291324d541f6f38167 /ci/install.sh | |
parent | 2fd6d96ae5c3bdf8dfcbdcf8137d80dbfc9433c6 (diff) | |
download | cortex-m-2c8ca9d6c49b47885ad9010a4de98817b9c85ff0.tar.gz cortex-m-2c8ca9d6c49b47885ad9010a4de98817b9c85ff0.tar.zst cortex-m-2c8ca9d6c49b47885ad9010a4de98817b9c85ff0.zip |
s/Xargo/Cargo/
Diffstat (limited to 'ci/install.sh')
-rw-r--r-- | ci/install.sh | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/ci/install.sh b/ci/install.sh index b7d8195..a0cbf43 100644 --- a/ci/install.sh +++ b/ci/install.sh @@ -3,10 +3,7 @@ set -euxo pipefail main() { case $TARGET in thumbv*-none-eabi*) - cargo install --list | grep xargo || \ - cargo install xargo - rustup component list | grep 'rust-src.*installed' || \ - rustup component add rust-src + rustup target add $TARGET ;; esac } |