From dc5978e73737e94ddbbc713e466d89422d41bb19 Mon Sep 17 00:00:00 2001 From: Jiahao XU Date: Fri, 10 Jun 2022 17:12:35 +1000 Subject: [PATCH] Fix step "Test": Fix invoking `cargo-binstall` directly Signed-off-by: Jiahao XU --- .github/workflows/rust.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 246485ff..72ad6eee 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -99,8 +99,8 @@ jobs: - name: Test if: ${{ matrix.test == 'true' }} run: | - for bin in $bins; do ./${{ matrix.output }} cargo-binstall --no-confirm $bin; done - ./${{ matrix.output }} cargo-binstall --manifest-path . --no-confirm + for bin in $bins; do ./${{ matrix.output }} binstall --no-confirm $bin; done + ./${{ matrix.output }} binstall --manifest-path . --no-confirm cargo-binstall env: bins: cargo-bindgen cbindgen cargo-deb cargo-llvm-cov cargo-binstall