Skip to content

Commit

Permalink
Fix a check note
Browse files Browse the repository at this point in the history
  • Loading branch information
jeroen committed Sep 19, 2024
1 parent 9371ad0 commit 58c0549
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion R/credentials.R
Original file line number Diff line number Diff line change
Expand Up @@ -79,5 +79,7 @@ remote_to_host <- function(repo, remote){
}

url_to_host <- function(url){
credentials:::parse_url(url, allow_ssh = TRUE)[['host']]
#credentials:::parse_url(url, allow_ssh = TRUE)[['host']]
parse_url <- getFromNamespace('parse_url', 'credentials')
parse_url(url, allow_ssh = TRUE)[['host']]
}

0 comments on commit 58c0549

Please sign in to comment.