Skip to content

Commit 1e1e372

Browse files
committed
Fix not showing informational output when entering
1 parent 24eec91 commit 1e1e372

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ if (parsedArgs.help) {
4343
} else {
4444
const subcommand = parsedArgs._[0];
4545
const dryrun = parsedArgs["dry-run"] as boolean;
46-
const quiet = parsedArgs["quiet"] != undefined;
46+
const quiet = Array.isArray(parsedArgs["quiet"]) ? parsedArgs['quiet'].length : parsedArgs['quiet'];
4747

4848
switch (subcommand) {
4949
case "integrate":

0 commit comments

Comments
 (0)