aboutsummaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
authorJorge Aparicio <jorge@japaric.io>2018-04-16 21:44:02 +0200
committerJorge Aparicio <jorge@japaric.io>2018-04-16 21:44:02 +0200
commitbfa56e12f7a3ec3734e329f00d98ce9a953fce6d (patch)
tree4169f3ae1a774a189b90baeefb1e1c3aaa0b5a44 /ci
parentbcce6b988b05b180ae12f91fe3468ecc76b6a0d0 (diff)
install rust-std component
Diffstat (limited to 'ci')
-rw-r--r--ci/install.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/ci/install.sh b/ci/install.sh
index e41f9c4..3c41921 100644
--- a/ci/install.sh
+++ b/ci/install.sh
@@ -1,7 +1,9 @@
set -euxo pipefail
main() {
- :
+ if [ $TARGET != x86_64-unknown-linux-gnu ]; then
+ rustup target add $TARGET
+ fi
}
main