Skip to content

Commit

Permalink
ci: make rm verbose
Browse files Browse the repository at this point in the history
  • Loading branch information
marcospereira committed Jan 16, 2024
1 parent 3a340e2 commit cd410f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/graalvm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
# This prevents local published artifacts from be added to GH Actions cache
- name: Clean local artifacts
if: contains(matrix.os, 'win') == false
run: rm -r -f ~/.m2/repository/gg/jte
run: rm -rvf ~/.m2/repository/gg/jte

# `rm` syntax for Windows is different. Needs to use `-Force` since `-f`
# is ambiguous (possible matches include: -Filter -Force).
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
# This prevents local published artifacts from be added to GH Actions cache
- name: Clean local artifacts
if: contains(matrix.os, 'win') == false
run: rm -r -f ~/.m2/repository/gg/jte
run: rm -rvf ~/.m2/repository/gg/jte

# `rm` syntax for Windows is different. Needs to use `-Force` since `-f`
# is ambiguous (possible matches include: -Filter -Force).
Expand Down

0 comments on commit cd410f2

Please sign in to comment.