Skip to content

Commit

Permalink
Merge pull request #881 from acacode/fix-880
Browse files Browse the repository at this point in the history
Fix #880
  • Loading branch information
smorimoto authored Aug 13, 2024
2 parents d853e9a + 5dcd8ff commit ea7616a
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 ea7616a

Please sign in to comment.