We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15e5b67 commit 79fc689Copy full SHA for 79fc689
R/configuration.R
@@ -78,7 +78,8 @@ get_codecheck_yml_osf <- function(x) {
78
#' @importFrom httr GET content
79
#' @importFrom yaml yaml.load
80
get_codecheck_yml_gitlab <- function(x) {
81
- response <- httr::GET(paste0(CONFIG$HYPERLINKS[["gitlab"]], x, "/-/raw/main/codecheck.yml?inline=false"))
+ link <- paste0(CONFIG$HYPERLINKS[["gitlab"]], x, "/-/raw/main/codecheck.yml?inline=false")
82
+ response <- httr::GET(link)
83
84
if (response$status == 200) {
85
content <- httr::content(response, as = "text", encoding = "UTF-8")
0 commit comments