From e784b07dbd734b1ebedb2a39a238922c7c22a7a8 Mon Sep 17 00:00:00 2001 From: Ken Fallon Date: Tue, 28 Oct 2025 17:14:15 +0100 Subject: [PATCH] Support for extra files associated with the eps --- workflow/process_episode.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workflow/process_episode.bash b/workflow/process_episode.bash index a89c448..ef1dd96 100755 --- a/workflow/process_episode.bash +++ b/workflow/process_episode.bash @@ -1899,7 +1899,7 @@ function register_assets() { echo '"episode_id","filename","extension","size", "sha1sum", "mime_type", "file_type"' | tee "${assets_csv}" - find "${working_dir}/" -maxdepth 1 -type f \( -iname "hpr${ep_num}.*" -or -iname "hpr${ep_num}_image_*.*" \) | \ + find "${working_dir}/" -maxdepth 1 -type f \( -iname "hpr${ep_num}.*" -or -iname "hpr${ep_num}_image_*.*" -or -iname "hpr${ep_num}_extra_*.*" \) | \ while read this_asset_filename do this_asset_filename="$( basename "${this_asset_filename}" )"