summaryrefslogtreecommitdiff
path: root/build.py
diff options
context:
space:
mode:
authorkennyballou <kballou@onyx.boisestate.edu>2012-12-19 12:50:29 -0700
committerkballou <kballou@onyx.boisestate.edu>2012-12-19 12:50:29 -0700
commit3739011c6173f4048fbbd94c0411dc103bf32ce5 (patch)
tree33365dae7dcf2c86f54055126fc8cd6d42ca16af /build.py
parent3dbf1013cc1ef4c2e92686a50459adede80179d7 (diff)
downloadxnt-3739011c6173f4048fbbd94c0411dc103bf32ce5.tar.gz
xnt-3739011c6173f4048fbbd94c0411dc103bf32ce5.tar.xz
Remove __pycache__ folders when running clean
Diffstat (limited to 'build.py')
-rw-r--r--build.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/build.py b/build.py
index 094a89e..237d6e8 100644
--- a/build.py
+++ b/build.py
@@ -13,7 +13,8 @@ def clean():
"dist",
"README.html",
"**/*.pyc",
- "**/**/*.pyc")
+ "**/**/*.pyc",
+ "**__pycache__")
@target
def build():