Remove wheel and pex files in fab clean

This commit is contained in:
Matthew Honnibal 2018-03-11 00:23:20 +01:00
parent 53b3249e06
commit fbb67b1b4b

2
fabfile.py vendored
View File

@ -75,6 +75,8 @@ def pex():
def clean():
with lcd(path.dirname(__file__)):
local('rm -f dist/*.whl')
local('rm -f dist/*.pex')
with virtualenv(VENV_DIR) as venv_local:
venv_local('python setup.py clean --all')