Skip to content

Commit

Permalink
Show stdout
Browse files Browse the repository at this point in the history
  • Loading branch information
raub committed Nov 17, 2023
1 parent 633ed71 commit 86e34eb
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/build-unix.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,10 @@ const updateSystem = async () => {
const buildLib = async () => {
try {
console.log(`LABSOUND Build Started`);
const { stderr } = await exec(`sh ${getScriptForLib()}`);
const { stderr, stdout } = await exec(`sh ${getScriptForLib()}`);
if (stdout) {
console.error(stdout);
}
if (stderr) {
console.error(stderr);
}
Expand Down

0 comments on commit 86e34eb

Please sign in to comment.