Merge pull request #2638 from Budibase/fix/bash-automation
This commit is contained in:
commit
4437e29b31
|
@ -44,7 +44,7 @@ module.exports.run = async function ({ inputs, context }) {
|
|||
|
||||
let stdout
|
||||
try {
|
||||
stdout = execSync(command, { timeout: 500 })
|
||||
stdout = execSync(command, { timeout: 500 }).toString()
|
||||
} catch (err) {
|
||||
stdout = err.message
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue