blog

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit dbe00cdbbbfb74d00c60c19fb938f55a73888ba9
parent 5afb2b98ba8a3ad77e8fbeb920200094da6ad5ad
Author: Andrew Laack <andrew@laack.co>
Date:   Thu, 18 Sep 2025 23:51:09 -0500

Fixed regression

Diffstat:
Mpython/youtube/urls/start.sh | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/python/youtube/urls/start.sh b/python/youtube/urls/start.sh @@ -12,7 +12,7 @@ while [ $START -lt $END ]; do printf -v START_PADDED "%07d" $START echo "Running: python3 read_and_check.py $START_PADDED $NEXT &" python3 read_and_check.py "$START_PADDED" "$NEXT" & - START=$NEXT + STEP + START=$((NEXT + STEP)) done wait