We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52ce6b1 commit cb5320cCopy full SHA for cb5320c
1 file changed
src/cli.js
@@ -153,6 +153,11 @@ const exitHandler = code => {
153
}
154
};
155
156
+// Default args given!
157
+if (args.length === 0 && cliAction.args !== undefined) {
158
+ args.push(cliAction.args);
159
+}
160
+
161
// Run commands synchronously one after another!
162
cliAction.command.forEach(command => {
163
if (program.verbose) {
0 commit comments