Skip to content

Commit ea7616a

Browse files
authored
Merge pull request #881 from acacode/fix-880
Fix #880
2 parents d853e9a + 5dcd8ff commit ea7616a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cli/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ const cli = (input) => {
8686
}),
8787
);
8888

89-
for (const command of input.commands) {
89+
for (const command of Object.entries(input.commands ?? {})) {
9090
addCommand(command);
9191
}
9292

0 commit comments

Comments
 (0)