Skip to content

Commit 098a17a

Browse files
committed
fix: log stdout output for generate:manifest command
FIXES: #39
1 parent c8c7281 commit 098a17a

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/Manifest/index.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,10 @@ export class Manifest {
7979
this.logger.logError(error.stderr)
8080
}
8181

82+
if (error.stdout) {
83+
this.logger.logError(error.stdout)
84+
}
85+
8286
return false
8387
}
8488
}

0 commit comments

Comments
 (0)