mirror of
https://github.com/github/spec-kit.git
synced 2026-02-04 15:03:07 +00:00
Merge pull request #918 from wfongcn/patch-1
Change loop condition to include last argument
This commit is contained in:
@@ -6,7 +6,7 @@ JSON_MODE=false
|
||||
SHORT_NAME=""
|
||||
ARGS=()
|
||||
i=0
|
||||
while [ $i -lt $# ]; do
|
||||
while [ $i -le $# ]; do
|
||||
arg="${!i}"
|
||||
case "$arg" in
|
||||
--json)
|
||||
|
||||
Reference in New Issue
Block a user