Skip to content

Commit

Permalink
Fix: No command error
Browse files Browse the repository at this point in the history
  • Loading branch information
Hayao0819 committed Apr 5, 2024
1 parent bbb1c50 commit ccc940d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion devtools.sh
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,9 @@ main() {
done
eval set -- "${_noopts-""}"
_cmd="${1-""}"
shift 1 || true
if [ $# -ge 1 ]; then
shift 1
fi
case "${_cmd-""}" in
"init")
init_command "$@"
Expand Down

0 comments on commit ccc940d

Please sign in to comment.