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))