Skip to content

Commit

Permalink
Fix #880
Browse files Browse the repository at this point in the history
Signed-off-by: Sora Morimoto <[email protected]>
  • Loading branch information
smorimoto committed Aug 13, 2024
1 parent d853e9a commit 5dcd8ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ const cli = (input) => {
}),
);

for (const command of input.commands) {
for (const command of Object.entries(input.commands ?? {})) {
addCommand(command);
}

Expand Down

0 comments on commit 5dcd8ff

Please sign in to comment.