rtic/ci/install.sh

10 lines
131 B
Bash
Raw Permalink Normal View History

2017-07-27 22:02:25 +02:00
set -euxo pipefail
2017-04-12 06:12:06 +02:00
main() {
2018-04-16 21:44:02 +02:00
if [ $TARGET != x86_64-unknown-linux-gnu ]; then
rustup target add $TARGET
fi
2017-04-12 06:12:06 +02:00
}
main