[py-svn] r11409 - py/dist/py/misc
hpk at codespeak.net
hpk at codespeak.net
Sun Apr 24 18:07:52 CEST 2005
Author: hpk
Date: Sun Apr 24 15:49:00 2005
New Revision: 11409
Modified:
py/dist/py/misc/_dist.py
Log:
kill the build directory on install target
Modified: py/dist/py/misc/_dist.py
==============================================================================
--- py/dist/py/misc/_dist.py (original)
+++ py/dist/py/misc/_dist.py Sun Apr 24 15:49:00 2005
@@ -105,3 +105,8 @@
# #print "installing", py
#py.std.pprint.pprint(kw)
core.setup(**kw)
+ if 'install' in sys.argv[1:]:
+ x = params._rootdir.join('build')
+ if x.check():
+ print "removing", x
+ x.remove()
More information about the pytest-commit
mailing list