mirror of
https://github.com/kennethreitz/python-github3.git
synced 2026-06-05 23:10:17 +00:00
basic fabfile
This commit is contained in:
Vendored
+15
@@ -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))
|
||||
|
||||
Reference in New Issue
Block a user