Skip to content

Commit

Permalink
must mask all non-base packages
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzwalthert committed Mar 13, 2022
1 parent e8c7faf commit f88e9a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/zzz.R
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@


ask_to_switch_to_non_default_cache_root <- function(ask = interactive()) {
if (ask && runif(1) > 0.9 && is.null(getOption("styler.cache_root"))) {
if (ask && stats::runif(1) > 0.9 && is.null(getOption("styler.cache_root"))) {
ask_to_switch_to_non_default_cache_root_impl()
options(styler.cache_root = "styler")
}
Expand Down

0 comments on commit f88e9a9

Please sign in to comment.