Skip to content

Commit

Permalink
add missing return (#1202)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinushey committed Jan 31, 2024
1 parent 732bec4 commit a045220
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion R/restore.R
Original file line number Diff line number Diff line change
Expand Up @@ -90,12 +90,13 @@ restore <- function(project = NULL,
# if users have requested the use of pak, delegate there
if (config$pak.enabled() && !recursing()) {
renv_pak_init()
renv_pak_restore(
status <- renv_pak_restore(
lockfile = lockfile,
packages = packages,
exclude = exclude,
project = project
)
return(status)
}

# set up Bioconductor version + repositories
Expand Down

0 comments on commit a045220

Please sign in to comment.