:
The functions ‘runGitHub()’ and ‘runGist()’ are
based on ‘runUrl()’
ので、解決策は、 "runUrl()
を使用する" です。
runGitHub
のコードがありgithub.com
ハードコードされ、その中に:
function (repo, username = getOption("github.user"), ref = "master",
subdir = NULL, destdir = NULL, ...)
{
if (grepl("/", repo)) {
res <- strsplit(repo, "/")[[1]]
if (length(res) != 2)
stop("'repo' must be of the form 'username/repo'")
username <- res[1]
repo <- res[2]
}
url <- paste("https://github.com/", username, "/", repo,
"/archive/", ref, ".tar.gz", sep = "")
runUrl(url, subdir = subdir, destdir = destdir, ...)
}
エンタープライズgithubのは、と「ホスト」の引数を持っているために、同じパス構造(すなわち/repo/archive/thing.tar.gz
)多分shiny
開発者に示唆されている場合デフォルトgithub.com
。または、URLを作成してrunUrl
に電話してください。
ありがとうございました。あなたのアイデアを提案します – Mark