diff options
Diffstat (limited to 'fabfile.py')
-rw-r--r-- | fabfile.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/fabfile.py b/fabfile.py new file mode 100644 index 0000000..4f69c5a --- /dev/null +++ b/fabfile.py @@ -0,0 +1,15 @@ +# -*- coding: utf-8 -*- + +import os +from fabric.api import * + + +DOCS_URL = 'https://gist.github.com/raw/71c2878f53e886dc921a/general.md' + + +def get_docs(): + """Removed Trashcan. + """ + os.chdir('ext') + os.system('curl -O {0}'.format(DOCS_URL)) + |