Skip to content

Commit 606db12

Browse files
committed
Fixed seq bug
1 parent 455f860 commit 606db12

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/script.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ create_pull_request() {
55
# Source wordlist (branch names)
66
mapfile -t words < <(curl -sL https://raw.githubusercontent.com/TomBos/TLC/refs/heads/build/word_list.txt)
77

8-
for i in $(seq 0 "$2"); do
8+
for i in $(seq 1 "$2"); do
99
WORD="${words[i]}"
1010
git checkout -b "$WORD"
1111

0 commit comments

Comments
 (0)