From 8374979e4fc664206aaa3a8fc8e3e868358a7064 Mon Sep 17 00:00:00 2001 From: Sebastian Estrella <2049686+sestrella@users.noreply.github.com> Date: Wed, 29 Nov 2023 22:29:13 -0500 Subject: [PATCH] Check ghcup is not present --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9cc6ac6..c8dfc3f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: - name: Remove ghcup run: ghcup nuke - name: Check ghcup is not present - run: ! command -v ghcup + run: "[[ ! command -v ghcup ]]" - name: Run tests run: ./test/bats/bin/bats -T test @@ -38,7 +38,7 @@ jobs: - name: Remove ghcup run: ghcup nuke - name: Check ghcup is not present - run: ! command -v ghcup + run: "[[ ! command -v ghcup ]]" - name: Test plugin uses: asdf-vm/actions/plugin-test@v3 with: