aboutsummaryrefslogtreecommitdiffstats
path: root/fabfile.py
diff options
context:
space:
mode:
authorKenneth Reitz <me@kennethreitz.com>2011-04-13 17:54:17 -0400
committerKenneth Reitz <me@kennethreitz.com>2011-04-13 17:54:17 -0400
commit0a8ebea5cff8a520e81b8ffe1c9aae29f56c869a (patch)
tree3a35caf981189e3e074292b850d990fb59ff916b /fabfile.py
parentempty readme (diff)
downloadpython-github3-0a8ebea5cff8a520e81b8ffe1c9aae29f56c869a.tar.xz
python-github3-0a8ebea5cff8a520e81b8ffe1c9aae29f56c869a.zip
basic fabfile
Diffstat (limited to 'fabfile.py')
-rw-r--r--fabfile.py15
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))
+