Skip to content

Commit

Permalink
Fix support for multiple app arguments (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
chiu1028 committed Aug 30, 2021
1 parent f1f4c9e commit 616290e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli.js
Expand Up @@ -47,7 +47,7 @@ if (!input && process.stdin.isTTY) {
process.exit(1);
}

const [, appName, appArguments] = cli.input;
const [, appName, ...appArguments] = cli.input;
if (appName) {
options.app = {
name: appName,
Expand Down

0 comments on commit 616290e

Please sign in to comment.