Skip to content

Commit

Permalink
fix a transient bug
Browse files Browse the repository at this point in the history
  • Loading branch information
wlandau-lilly committed Nov 10, 2024
1 parent 51d062a commit 70b8c3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/class_builder.R
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ target_run.tar_builder <- function(target, envir, path_store) {
}
on.exit(builder_unset_tar_runtime(), add = TRUE)
on.exit(target$subpipeline <- NULL, add = TRUE)
if (identical(target$settings$retrieval, "worker")) {
if (!identical(target$settings$retrieval, "none")) {
target_ensure_deps_worker(target, target$subpipeline)
}
frames <- frames_produce(envir, target, target$subpipeline)
Expand Down

0 comments on commit 70b8c3c

Please sign in to comment.