Skip to content

Commit 2b0bdc3

Browse files
author
zhenwei-li
committed
the rm cache command upgrade
1 parent 42f96fe commit 2b0bdc3

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.rmcache.bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ find . -type f -name '*.pyc' -delete
55

66
### THE DELETE DIRECTORY
77
## .tox/*
8-
find .tox -path "*" -delete
8+
find .tox -path "*" ! -name ".tox" -delete
99
## ./build/*
1010
find ./build -path "*" ! -name "build" -delete
1111
## ./src/com.dvsnier.*.egg-info

.rmcache.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Get-ChildItem -Path . -include *.pyc -Recurse | Remove-Item
1010

1111
### THE DELETE DIRECTORY
1212
## .tox/*
13-
Remove-Item -Path .\.tox -Recurse
13+
Remove-Item -Path .\.tox\* -Recurse
1414
## ./build/*
1515
Remove-Item -Path .\build\* -Recurse
1616
## ./src/com.dvsnier.*.egg-info

0 commit comments

Comments
 (0)