Skip to content

Commit

Permalink
Merge pull request #29 from RobLBaker/main
Browse files Browse the repository at this point in the history
fix operand in pkg_update
  • Loading branch information
RobLBaker authored Jan 2, 2024
2 parents 4f111bf + e835dbe commit 2ac0714
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/updateR.R
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
pkg_update <- remotes::package_deps(git_pkgs, dependencies = c("Imports",
"Remotes",
"Suggests"))
if(any(pkg_update$diff < 0)){
if(any(pkg_update$diff > 0)){
old_pkgs <- NULL
for(i in seq_along(pkg_update$diff)){
if(pkg_update$diff[i] != 0){
Expand Down

0 comments on commit 2ac0714

Please sign in to comment.