Skip to content

Commit

Permalink
Deal with $step_all being 1 instead of true
Browse files Browse the repository at this point in the history
1 is not true, 1 is false.
  • Loading branch information
waldoj committed Jan 23, 2024
1 parent 23daa01 commit e60c5b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/handler.sh
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ set "$step_get_captions"
set "$step_save_captions"
set "$step_internet_archive"

if [ "$step_all" = true ]; then
if [ "$step_all" = true ] || [ "$step_all" = "1" ]; then
step_download=true
step_screenshots=true
step_crop_chyrons=true
Expand Down

0 comments on commit e60c5b1

Please sign in to comment.