mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +01:00
9 lines
131 B
Bash
9 lines
131 B
Bash
set -euxo pipefail
|
|
|
|
main() {
|
|
if [ $TARGET != x86_64-unknown-linux-gnu ]; then
|
|
rustup target add $TARGET
|
|
fi
|
|
}
|
|
|
|
main
|