aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fabfile.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/fabfile.py b/fabfile.py
index 4f69c5a..444e532 100644
--- a/fabfile.py
+++ b/fabfile.py
@@ -4,12 +4,16 @@ import os
from fabric.api import *
-DOCS_URL = 'https://gist.github.com/raw/71c2878f53e886dc921a/general.md'
+DOCS_URL = 'https://gist.github.com/raw/71c2878f53e886dc921a/'
def get_docs():
"""Removed Trashcan.
"""
os.chdir('ext')
- os.system('curl -O {0}'.format(DOCS_URL))
+ os.system('curl -O {0}{1}'.format(DOCS_URL, 'general.md'))
+ os.system('curl -O {0}{1}'.format(DOCS_URL, 'issue_comments.md'))
+ os.system('curl -O {0}{1}'.format(DOCS_URL, 'issues.md'))
+ os.system('curl -O {0}{1}'.format(DOCS_URL, 'labels.md'))
+ os.system('curl -O {0}{1}'.format(DOCS_URL, 'milestones.md'))