Skip to content

Commit

Permalink
Fix 🐛 in getPackageLicences()
Browse files Browse the repository at this point in the history
"result" was missing
  • Loading branch information
hsonne committed May 10, 2024
1 parent d95cbb3 commit e5c9c89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/helpers.R
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ getPackageLicences <- function(
licence_fields <- grep("^licence", names(db), value = TRUE)
stopifnot(length(licence_fields) > 0L)

merge(
result <- merge(
x = noFactorDataFrame(package = packages),
y = selectColumns(db, c("package", "version", licence_fields)),
by = "package",
Expand Down

0 comments on commit e5c9c89

Please sign in to comment.