aboutsummaryrefslogtreecommitdiff
path: root/ci/install.sh
diff options
context:
space:
mode:
Diffstat (limited to 'ci/install.sh')
-rw-r--r--ci/install.sh5
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
}