Skip to content

Commit

Permalink
Consistency in option names
Browse files Browse the repository at this point in the history
  • Loading branch information
richfitz committed Oct 18, 2024
1 parent b3c727a commit cf5fb9f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion R/outpack_index.R
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ outpack_index <- R6::R6Class(


index_update <- function(root_path, prev, skip_cache, progress) {
progress <- progress %||% getOption("orderly_index_progress", TRUE)
progress <- progress %||% getOption("orderly.index_progress", TRUE)
path_index <- file.path(root_path, ".outpack", "index", "outpack.rds")

if (length(prev) == 0 && file.exists(path_index) && !skip_cache) {
Expand Down
2 changes: 1 addition & 1 deletion tests/testthat/helper-orderly.R
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
options(outpack.schema_validate =
requireNamespace("jsonvalidate", quietly = TRUE) &&
packageVersion("jsonvalidate") >= "1.4.0",
orderly_index_progress = FALSE,
orderly.index_progress = FALSE,
orderly.quiet = TRUE)


Expand Down

0 comments on commit cf5fb9f

Please sign in to comment.