summaryrefslogtreecommitdiff
path: root/fabfile.py
blob: 887bc25a0063ebd781edf8d620340668fe95cf03 (plain)
1
2
3
4
5
6
7
from fabric.api import *


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