diff options
author | Waylan Limberg <waylan@gmail.com> | 2011-08-03 22:16:33 -0400 |
---|---|---|
committer | Waylan Limberg <waylan@gmail.com> | 2011-08-03 22:16:33 -0400 |
commit | 47d8d4c175b26f71c3c9341cb5b50910359b124c (patch) | |
tree | 82e556643a445f428835463a29d09c0b97ba8e59 | |
parent | b27a94ebcd8125ede8ba983bc63f40c4a4977536 (diff) | |
download | markdown-47d8d4c175b26f71c3c9341cb5b50910359b124c.tar.gz markdown-47d8d4c175b26f71c3c9341cb5b50910359b124c.tar.bz2 markdown-47d8d4c175b26f71c3c9341cb5b50910359b124c.zip |
Added 'fab clean' command.
-rw-r--r-- | fabfile.py | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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:') |