Skip to content

Commit

Permalink
Merge pull request #115 from nayib-ixpantia/T113
Browse files Browse the repository at this point in the history
#51 syntax and imports at description file
  • Loading branch information
andreavargasmon authored May 11, 2022
2 parents fe5b30d + d0081bb commit 601cea6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,16 @@ Imports:
stringr (>= 1.4.0),
shinyWidgets (>= 0.2.1),
purrr (>= 0.3.4),
gert (>= 1.5.0)
gert (>= 1.5.0),
keyring (>= 1.3.0)
Suggests:
knitr (>= 1.23),
readr (>= 1.3.1),
rmarkdown (>= 1.12),
rstudioapi (>= 0.10),
testthat (>= 2.1.1),
tidyr (>= 0.8.3)
tidyr (>= 0.8.3),
pkgdown (>= 2.0.3)
VignetteBuilder:
knitr
Remotes:
Expand Down
4 changes: 2 additions & 2 deletions R/credential_cache.R
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ set_git_credentials_cache <- function(hours = 4, global = TRUE) {
if (global == TRUE) {
system(paste(
"git config --global credential.helper cache --timeout=",
hours * 60 * 60))
hours * 60 * 60, "'"), show.output.on.console = FALSE)
} else {
system(paste(
"git config credential.helper cache --timeout=",
hours * 60 * 60))
hours * 60 * 60, "'"), show.output.on.console = FALSE)
}
}

0 comments on commit 601cea6

Please sign in to comment.