Skip to content

Commit

Permalink
don't fail task if rm command fails
Browse files Browse the repository at this point in the history
Signed-off-by: Jeromy Cannon <[email protected]>
  • Loading branch information
jeromy-cannon committed Jan 7, 2025
1 parent 26a907e commit aac9ba6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Taskfile.helper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ tasks:
silent: true
cmds:
- echo "Cleaning up temporary files..."
- rm -f /tmp/run-build-*
- rm -f /tmp/var-check-*
- rm -f /tmp/minio-flag-*
- rm -f /tmp/solo-install-*
- rm -f /tmp/run-build-* || true
- rm -f /tmp/var-check-* || true
- rm -f /tmp/minio-flag-* || true
- rm -f /tmp/solo-install-* || true

0 comments on commit aac9ba6

Please sign in to comment.