diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2022-01-02 22:36:27 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-02 22:36:27 +0000 |
commit | 2d7cc3da334c6209e5e78779a7939772859fa78f (patch) | |
tree | 3aa99384d931590a5956f2a04d473d732811ff35 | |
parent | 1d95a3cdc885d68b9478170ce0eea894be5bb321 (diff) |
Update cmake.yml
-rw-r--r-- | .github/workflows/cmake.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index e819aa47..ffc66968 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -40,7 +40,7 @@ jobs: if: matrix.os == 'ubuntu-latest' - name: Kill gcc - run: foreach ($i in @("cc","c++","gcc","g++","ld")) { remove-item -force -path C:\ProgramData\chocolatey\bin\$i.exe } + run: foreach ($i in @("cc","c++","gcc","g++","ld")) { $x = "C:\ProgramData\chocolatey\bin\$i.exe"; if (test-path $x) { remove-item -force -path $x } } if: matrix.os == 'windows-latest' - name: Cache Qt |