Skip to content

Commit

Permalink
Merge pull request #14 from wurli/hotfix
Browse files Browse the repository at this point in the history
fix: should no longer fail if no package source found
  • Loading branch information
wurli authored Mar 8, 2024
2 parents aa067b8 + a057a8d commit d42448c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/inform_load.R
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ package_version_describe <- function(pkg, inform_if_ahead = NULL, template = NUL
source <- remote_vn_info[["Source_Name"]]
source_url <- remote_vn_info[["Source_URL"]]

inform_if_ahead <- inform_if_ahead %||% grepl("^Bioc", source)
inform_if_ahead <- inform_if_ahead %||% grepl("^Bioc", source) %or% FALSE

new_version_found <- !is.null(available)

Expand Down

0 comments on commit d42448c

Please sign in to comment.