We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5bcb9b2 commit e5f1fe8Copy full SHA for e5f1fe8
swift/actions/build-and-test/action.yml
@@ -50,5 +50,5 @@ runs:
50
if: ${{ github.event_name != 'pull_request' }}
51
shell: bash
52
run: |
53
- find "~/.cache/bazel-repository-cache" "~/.cache/bazel-disk-cache" -atime +0 -type f -delete
54
- du -sh "~/.cache/bazel-repository-cache" "~/.cache/bazel-disk-cache"
+ find "~/.cache/bazel-repository-cache" "~/.cache/bazel-disk-cache" -atime +0 -type f -delete || : # ignore errors if the cache is empty
+ du -sh "~/.cache/bazel-repository-cache" "~/.cache/bazel-disk-cache" || : # ignore errors if the cache is empty
0 commit comments