We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f344268 commit a2f5684Copy full SHA for a2f5684
1 file changed
R/seaice.R
@@ -35,7 +35,9 @@ read_north_seaice <- function(date, latest = TRUE, ...) {
35
datadir <- get_local_file_root()
36
if (nrow(files) < 1) {
37
test <- yesno::yesno(sprintf("no seaice files available, \ndownload and install files to: \n%s?", datadir))
38
- if (test) run_bb_sync()
+ if (test) {
39
+ stop("auto-synch not enabled, see vignette 'get_seaice' for manual config")
40
+ }
41
}
42
files <- filter(files, str_detect(.data$fullname, "sidads"))
43
files <- filter(files, str_detect(.data$fullname, "bin$"))
0 commit comments