diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2022-01-02 22:33:39 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-02 22:33:39 +0000 |
commit | 1d95a3cdc885d68b9478170ce0eea894be5bb321 (patch) | |
tree | 514b9c2d7972bd832bcbd91431032949ebccf0e0 /.github | |
parent | eabb701dc2a784769ec745a279a70761456314ae (diff) |
Update cmake.yml
Diffstat (limited to '.github')
-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 6b9a0b4e..e819aa47 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: rm -force C:\ProgramData\chocolatey\bin\c++.exe C:\ProgramData\chocolatey\bin\cc.exe C:\ProgramData\chocolatey\bin\ld.exe + run: foreach ($i in @("cc","c++","gcc","g++","ld")) { remove-item -force -path C:\ProgramData\chocolatey\bin\$i.exe } if: matrix.os == 'windows-latest' - name: Cache Qt |