Skip to content

Commit 0a08b8e

Browse files
committed
fix linked URLs in report; closes #53
1 parent 0b53d94 commit 0a08b8e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: srr
22
Title: 'rOpenSci' Review Roclets
3-
Version: 0.1.4.005
3+
Version: 0.1.4.006
44
Authors@R:
55
person("Mark", "Padgham", , "mark@ropensci.org", role = c("aut", "cre"),
66
comment = c(ORCID = "0000-0003-2172-5265"))

R/git.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ get_git_remote <- function (path = ".") {
2424
return (NULL)
2525
}
2626

27-
r <- strsplit (d$URL, "\\s+") [[1]]
27+
r <- strsplit (d$URL, ",?\\s+?") [[1]]
2828
r <- grep ("^https", r, value = TRUE)
2929
if (length (r) > 1) {
3030
r <- grep ("git", r, value = TRUE)

codemeta.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"codeRepository": "https://github.com/ropensci-review-tools/srr",
99
"issueTracker": "https://github.com/ropensci-review-tools/srr/issues",
1010
"license": "https://spdx.org/licenses/MIT",
11-
"version": "0.1.4.005",
11+
"version": "0.1.4.006",
1212
"programmingLanguage": {
1313
"@type": "ComputerLanguage",
1414
"name": "R",

0 commit comments

Comments
 (0)