We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42f96fe commit 2b0bdc3Copy full SHA for 2b0bdc3
2 files changed
.rmcache.bash
@@ -5,7 +5,7 @@ find . -type f -name '*.pyc' -delete
5
6
### THE DELETE DIRECTORY
7
## .tox/*
8
-find .tox -path "*" -delete
+find .tox -path "*" ! -name ".tox" -delete
9
## ./build/*
10
find ./build -path "*" ! -name "build" -delete
11
## ./src/com.dvsnier.*.egg-info
.rmcache.ps1
@@ -10,7 +10,7 @@ Get-ChildItem -Path . -include *.pyc -Recurse | Remove-Item
12
13
-Remove-Item -Path .\.tox -Recurse
+Remove-Item -Path .\.tox\* -Recurse
14
15
Remove-Item -Path .\build\* -Recurse
16
0 commit comments