Beispiel #1
0
def do_make_doc(owner, name):
    utils.pushd(path.join(repo.path_for(owner, name), "build"))
    _call("make", "doc")
    utils.popd()
Beispiel #2
0
def do_pull(owner, name):
    utils.pushd(repo.path_for(owner, name))
    _call("git", "pull")
    utils.popd()