Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Relax package path assumptions in download_version_url #441

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions R/install-version.R
Original file line number Diff line number Diff line change
Expand Up @@ -127,9 +127,14 @@ download_version_url <- function(package, version, repos, type) {
# Grab the latest one: only happens if pulled from CRAN
package.path <- row.names(info)[nrow(info)]
} else {
package.path <- paste(package, "/", package, "_", version, ".tar.gz",
package.filename <- paste(package, "_", version, ".tar.gz",
sep = "")
if (!(package.path %in% row.names(info))) {
rn <- row.names(info)
idx <- substr(rn, nchar(rn) - nchar(package.filename) + 1,
nchar(rn)) == package.filename
if(any(idx)) {
package.path <- rn[idx][1L]
} else {
stop(sprintf("version '%s' is invalid for package '%s'", version,
package))
}
Expand Down
9 changes: 7 additions & 2 deletions inst/install-github.R

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 7 additions & 2 deletions install-github.R

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.