Skip to content

Commit 23e1f5a

Browse files
authored
fix: 🐛 set sas_path target to mode = "always" to detect new SAS files in input_dir (#233)
# Description I experienced that after adding more SAS files to the input_dir, the new files weren't converted. This fixes that. Not sure how often this would happen though? Needs a thorough review. ## Checklist - [X] Ran `just run-all`
1 parent b9e6604 commit 23e1f5a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

inst/template-targets.R

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,8 @@ list(
6262
tar_target(
6363
name = sas_paths,
6464
command = list_sas_files(config$input_dir),
65-
deployment = "main"
65+
deployment = "main",
66+
cue = tar_cue(mode = "always")
6667
),
6768

6869
# Empty output directory before writing to avoid outdated Parquet files.

0 commit comments

Comments
 (0)