rtic/ci/install.sh
2018-04-16 21:44:02 +02:00

9 lines
131 B
Bash

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