aboutsummaryrefslogtreecommitdiffstats
path: root/fabfile.py
blob: 4f69c5aa5ac1d9359aae98522b8c3344978dfd93 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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))