diff --git a/workflow/process_episode.bash b/workflow/process_episode.bash index dbfee95..aebae5b 100755 --- a/workflow/process_episode.bash +++ b/workflow/process_episode.bash @@ -84,13 +84,6 @@ function program_checks() { fi done - if ${force_overwrite} - then - echo_debug "The setting \"force_overwrite\" is set to true, so files will be overwritten." - else - echo_debug "The setting \"force_overwrite\" is set to false, so when files exist the program will skip files if they exist." - fi - } ################################################# @@ -156,23 +149,6 @@ function get_working_dir_from_local_dir() { echo_debug "Processing a local directory" - # Get supplied working dir and ep_num if provided - for argument in "$@" - do - - - if [ -d "${argument}" ] - then - working_dir="$( realpath ${argument} )" - fi - - if [ "$( echo "${argument}" | grep --count "ep_num=" )" -eq "1" ] - then - ep_num="$( echo "${argument}" | sed 's/^.*ep_num=//g' | awk '{print $1}' )" - fi - - done - if [[ ! -d "${working_dir}" || -z "${working_dir}" ]] then echo_error "The working dir is missing. Please supply a working directory." @@ -608,6 +584,7 @@ function generate_initial_report() {
+Skip to Derived Media