aboutsummaryrefslogtreecommitdiffstats
path: root/fabfile.py
blob: 444e532503050a11d4e5d8c924eb325c0f6a91de (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# -*- coding: utf-8 -*-

import os
from fabric.api import *


DOCS_URL = 'https://gist.github.com/raw/71c2878f53e886dc921a/'


def get_docs():
    """Removed Trashcan.
    """
    os.chdir('ext')
    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'))