heapless/ci/install.sh
Jorge Aparicio 301c1becdf drop Xargo
2018-04-13 16:26:16 +02:00

10 lines
131 B
Bash

set -euxo pipefail
main() {
if [ $TARGET != x86_64-unknown-linux-gnu ]; then
rustup target add $TARGET
fi
}
main