We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33341f0 commit 60a2aceCopy full SHA for 60a2ace
.rmcache.bash
@@ -4,6 +4,8 @@
4
find . -type f -name '*.pyc' -delete
5
6
## THE DELETE DIRECTORY
7
+# .tox/*
8
+find .tox -path "*" -delete
9
# ./build/*
10
find ./build -path "*" ! -name "build" -delete
11
# ./src/com.dvsnier.*.egg-info
.rmcache.ps1
@@ -7,6 +7,8 @@
## THE DELETE FILES
Get-ChildItem -Path . -include *.pyc -Recurse | Remove-Item
+Remove-Item -Path .\.tox -Recurse
12
13
Remove-Item -Path .\build\* -Recurse
14
0 commit comments