Skip to content

Commit 60a2ace

Browse files
committed
the rm cache command upgrade
1 parent 33341f0 commit 60a2ace

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.rmcache.bash

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
find . -type f -name '*.pyc' -delete
55

66
## THE DELETE DIRECTORY
7+
# .tox/*
8+
find .tox -path "*" -delete
79
# ./build/*
810
find ./build -path "*" ! -name "build" -delete
911
# ./src/com.dvsnier.*.egg-info

.rmcache.ps1

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
## THE DELETE FILES
88
Get-ChildItem -Path . -include *.pyc -Recurse | Remove-Item
99
## THE DELETE DIRECTORY
10+
# .tox/*
11+
Remove-Item -Path .\.tox -Recurse
1012
# ./build/*
1113
Remove-Item -Path .\build\* -Recurse
1214
# ./src/com.dvsnier.*.egg-info

0 commit comments

Comments
 (0)