string var

This commit is contained in:
Naveenraj M
2020-03-30 04:28:05 +05:30
parent efb157518c
commit 19d8f15bf1
2 changed files with 2 additions and 2 deletions

View File

@ -63,7 +63,7 @@ function run() {
else {
// the *entire* stdout and stderr (buffered)
console.log(`stdout: ${stdout}`);
myOutput = stdout;
myOutput = `${stdout}`;
console.log(`stderr: ${stderr}`);
}
});

View File

@ -70,7 +70,7 @@ async function run() {
} else {
// the *entire* stdout and stderr (buffered)
console.log(`stdout: ${stdout}`);
myOutput = stdout;
myOutput = `${stdout}`;
console.log(`stderr: ${stderr}`);
}
});