diff options
Diffstat (limited to 'ci/script.sh')
-rw-r--r-- | ci/script.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ci/script.sh b/ci/script.sh index d5d1c69..0cf0da0 100644 --- a/ci/script.sh +++ b/ci/script.sh @@ -3,11 +3,11 @@ set -euxo pipefail main() { case $TARGET in thumbv7em-none-eabi*) - xargo check --target $TARGET --features cm7-r0p1 - xargo check --target $TARGET + cargo check --target $TARGET --features cm7-r0p1 + cargo check --target $TARGET ;; thumbv*-none-eabi*) - xargo check --target $TARGET + cargo check --target $TARGET ;; *) cargo test --target $TARGET |