mirror of
https://github.com/rust-embedded/heapless.git
synced 2025-10-02 14:54:30 +00:00
13 lines
210 B
Bash
13 lines
210 B
Bash
set -euxo pipefail
|
|
|
|
main() {
|
|
case $TARGET in
|
|
thumb*m-none-eabi)
|
|
xargo check --target $TARGET
|
|
;;
|
|
*)
|
|
cargo check --target $TARGET
|
|
;;
|
|
esac
|
|
}
|