unplugged-vendor/external/rust/crates/cast/ci/install.sh

10 lines
131 B
Bash
Raw Normal View History

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