Skip to content

Commit

Permalink
Update utils.R
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderbates committed Sep 27, 2024
1 parent 91c7a73 commit a93c2fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/utils.R
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ express_lane <- function(base_dir) {

# Get all PNG files in todo directory that start with '1'
png_files <- fs::dir_ls(todo_dir, recurse = TRUE, glob = "*.png")
png_files<- png_files[grepl("^1", basename(png_files))]
png_files<- png_files[grepl("^1_", fs::path_file(png_files))]

# Create symlinks
purrr::walk(png_files, function(file) {
Expand Down

0 comments on commit a93c2fa

Please sign in to comment.