Skip to content

Commit

Permalink
fix #45
Browse files Browse the repository at this point in the history
  • Loading branch information
mpadge committed Oct 11, 2024
1 parent 67bd6b3 commit cc62409
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: allcontributors
Title: Acknowledge all Contributors to a Project
Version: 0.2.0.011
Version: 0.2.0.012
Authors@R: c(
person("Mark", "Padgham", , "[email protected]", role = c("aut", "cre")),
person("Chris", "Hartgerink", role = "aut"),
Expand Down
2 changes: 1 addition & 1 deletion R/urlcheck.R
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ check_github_urls <- function (ctbs, quiet = FALSE) {
out [[i]] <- hs [[i]]$status_code
}
}
index <- which (unlist (out) == 200L)
index <- which (unlist (out) != 404)

return (ctbs [index, ])
}
Expand Down
2 changes: 1 addition & 1 deletion codemeta.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"codeRepository": "https://github.com/ropenscilabs/allcontributors",
"issueTracker": "https://github.com/ropenscilabs/allcontributors/issues",
"license": "https://spdx.org/licenses/GPL-3.0",
"version": "0.2.0.011",
"version": "0.2.0.012",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "R",
Expand Down

0 comments on commit cc62409

Please sign in to comment.