Skip to content

Commit

Permalink
No longer print GitHub PAT messages by default
Browse files Browse the repository at this point in the history
  • Loading branch information
jimhester authored and HughParsonage committed Jul 2, 2019
1 parent 3c3afd6 commit 3b2b193
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# devtools 1.13.3.9000

* `github_pat()` and `gitlab_pat()` no longer print diagnostic messages by
default (#1752).

* `test()` now sets `useFancyQuotes = FALSE` to better mimic the environment tests
are run under with `R CMD check` (#1735).

Expand Down
2 changes: 1 addition & 1 deletion R/install-github.r
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
#' }
install_github <- function(repo, username = NULL,
ref = "master", subdir = NULL,
auth_token = github_pat(quiet),
auth_token = github_pat(),
host = "https://api.github.com", quiet = FALSE,
...) {

Expand Down
2 changes: 1 addition & 1 deletion R/install-gitlab.r
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#' install_github("jimhester/covr")
#' }
install_gitlab <- function(repo,
auth_token = gitlab_pat(quiet),
auth_token = gitlab_pat(),
host = "https://www.gitlab.com", quiet = FALSE, ...)
{

Expand Down

0 comments on commit 3b2b193

Please sign in to comment.