Skip to content

Commit

Permalink
Correct deleteCache script for Windows PowerShell
Browse files Browse the repository at this point in the history
  • Loading branch information
besidev committed Oct 5, 2023
1 parent 66f4416 commit af96991
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions deleteCache.ps1
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
Get-Children -Path $env:USERPROFILE\.m2, $env:USERPROFILE\.gradle -Recurse |
Where-Object { $_.FullName -match 'one.jpro.platform' } |
ForEach-Object { Remove-Item -Path $_.FullName -Recurse -Force }
Get-ChildItem -Path $env:USERPROFILE\.m2, $env:USERPROFILE\.gradle -Recurse |
Where-Object { $_.FullName -match 'one.jpro.platform' } |
ForEach-Object { Remove-Item -Path $_.FullName -Recurse -Force }

0 comments on commit af96991

Please sign in to comment.