Skip to content

Commit 86e34eb

Browse files
committed
Show stdout
1 parent 633ed71 commit 86e34eb

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/build-unix.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,10 @@ const updateSystem = async () => {
4141
const buildLib = async () => {
4242
try {
4343
console.log(`LABSOUND Build Started`);
44-
const { stderr } = await exec(`sh ${getScriptForLib()}`);
44+
const { stderr, stdout } = await exec(`sh ${getScriptForLib()}`);
45+
if (stdout) {
46+
console.error(stdout);
47+
}
4548
if (stderr) {
4649
console.error(stderr);
4750
}

0 commit comments

Comments
 (0)