diff options
author | 2011-04-13 17:54:17 -0400 | |
---|---|---|
committer | 2011-04-13 17:54:17 -0400 | |
commit | 0a8ebea5cff8a520e81b8ffe1c9aae29f56c869a (patch) | |
tree | 3a35caf981189e3e074292b850d990fb59ff916b /fabfile.py | |
parent | empty readme (diff) | |
download | python-github3-0a8ebea5cff8a520e81b8ffe1c9aae29f56c869a.tar.xz python-github3-0a8ebea5cff8a520e81b8ffe1c9aae29f56c869a.zip |
basic fabfile
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)) + |