[ci] silently continue when trying to delete ccache.exe if it doesn't exist (#3222)

This commit is contained in:
briaguya 2023-09-22 08:19:33 -04:00 committed by GitHub
parent bb643661f6
commit 8fdee66610
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -276,7 +276,7 @@ jobs:
if: ${{ !vars.WINDOWS_RUNNER }}
run: |
choco install ninja
Remove-Item -Path "C:\ProgramData\Chocolatey\bin\ccache.exe" -Force
Remove-Item -Path "C:\ProgramData\Chocolatey\bin\ccache.exe" -Force -ErrorAction SilentlyContinue
- uses: actions/checkout@v3
with:
submodules: true