mirror of
https://github.com/kennethreitz/tablib.git
synced 2026-06-05 15:00:19 +00:00
8 lines
151 B
Python
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 '{}' ';'")
|