示例#1
0
文件: actions.py 项目: nokurn/webhook
def do_make_doc(owner, name):
    utils.pushd(path.join(repo.path_for(owner, name), "build"))
    _call("make", "doc")
    utils.popd()
示例#2
0
文件: actions.py 项目: nokurn/webhook
def do_pull(owner, name):
    utils.pushd(repo.path_for(owner, name))
    _call("git", "pull")
    utils.popd()