mirror of https://github.com/eldruin/ds323x-rs
14 lines
254 B
Bash
14 lines
254 B
Bash
|
set -euxo pipefail
|
||
|
|
||
|
main() {
|
||
|
rustup component add rust-src
|
||
|
SYSROOT=$(rustc --print sysroot)
|
||
|
if [[ ! "$SYSROOT" =~ "$TARGET" ]]; then
|
||
|
rustup target add $TARGET
|
||
|
else
|
||
|
echo "Target $TARGET is already installed"
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
main
|