aboutsummaryrefslogtreecommitdiffstats
path: root/fabfile.py
diff options
context:
space:
mode:
authorWaylan Limberg <waylan@gmail.com>2011-08-03 22:16:33 -0400
committerWaylan Limberg <waylan@gmail.com>2011-08-03 22:16:33 -0400
commit47d8d4c175b26f71c3c9341cb5b50910359b124c (patch)
tree82e556643a445f428835463a29d09c0b97ba8e59 /fabfile.py
parentb27a94ebcd8125ede8ba983bc63f40c4a4977536 (diff)
downloadmarkdown-47d8d4c175b26f71c3c9341cb5b50910359b124c.tar.gz
markdown-47d8d4c175b26f71c3c9341cb5b50910359b124c.tar.bz2
markdown-47d8d4c175b26f71c3c9341cb5b50910359b124c.zip
Added 'fab clean' command.
Diffstat (limited to 'fabfile.py')
-rw-r--r--fabfile.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/fabfile.py b/fabfile.py
index cc43ac7..9680bd1 100644
--- a/fabfile.py
+++ b/fabfile.py
@@ -21,6 +21,10 @@ def _get_versions():
return vs
confirmed_versions = _get_versions()
+def clean():
+ """ Clean up dir. """
+ local('git clean -dfx')
+
def list_versions():
""" List all supported versions of Python. """
print('Supported Python versions available on this system:')