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 fd5b4ab commit 54df59bCopy full SHA for 54df59b
R/zzz.R
@@ -17,9 +17,14 @@
17
)
18
toset <- !(names(op.styler) %in% names(op))
19
if (any(toset)) options(op.styler[toset])
20
- ask_to_switch_to_non_default_cache_root()
21
- remove_cache_old_versions()
22
- remove_old_cache_files()
+ rlang::try_fetch(
+ {
+ ask_to_switch_to_non_default_cache_root()
23
+ remove_cache_old_versions()
24
+ remove_old_cache_files()
25
+ },
26
+ error = function(...) NULL
27
+ )
28
invisible()
29
}
30
0 commit comments