From b033b5f5858c9275b6bb89f1fbed6fffcb5e16ed Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Tue, 23 Apr 2024 16:52:08 -0400 Subject: [PATCH] Fix os check, again --- .github/workflows/cmake-multi-platform.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cmake-multi-platform.yml b/.github/workflows/cmake-multi-platform.yml index a8dce5b..6059ac9 100644 --- a/.github/workflows/cmake-multi-platform.yml +++ b/.github/workflows/cmake-multi-platform.yml @@ -43,7 +43,7 @@ jobs: # Why does Windows need this? - name: Clear old build directiories - if: ${{ matrix.os }} == 'windows-latest' + if: matrix.os == 'windows-latest' run: | Remove-Item -LiteralPath "${{ steps.strings.outputs.build-output-dir }}-ECM" -Force -Recurse -ErrorAction Ignore Remove-Item -LiteralPath "${{ steps.strings.outputs.build-output-dir }}-kca" -Force -Recurse -ErrorAction Ignore