Files
tablib/fabfile.py
T
2010-09-12 13:13:43 -04:00

8 lines
151 B
Python

from fabric.api import *
def scrub():
""" Death to the bytecode! """
local("rm -fr dist build")
local("find . -name \"*.pyc\" -exec rm '{}' ';'")