From f529205c2a0002c7da26232f987b1d8f44a914f3 Mon Sep 17 00:00:00 2001 From: Christian Tamblyn Date: Thu, 24 Aug 2023 20:52:07 +0100 Subject: [PATCH] Fix `cargo rustc` command in action. --- .github/workflows/quickstart.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/quickstart.yml b/.github/workflows/quickstart.yml index 6f19f98..9dd29be 100644 --- a/.github/workflows/quickstart.yml +++ b/.github/workflows/quickstart.yml @@ -24,7 +24,7 @@ jobs: - uses: dtolnay/rust-toolchain@master with: toolchain: ${{ matrix.rust }} - - run: rustc --manifest-path=check_no_std/Cargo.toml -- -C link-arg=-nostartfiles + - run: cargo rustc --manifest-path=check_no_std/Cargo.toml -- -C link-arg=-nostartfiles check: name: Check