1
0
Fork 0
mirror of synced 2024-07-03 05:20:32 +12:00

Merge pull request #2638 from Budibase/fix/bash-automation

This commit is contained in:
Martin McKeaveney 2021-09-17 15:18:10 +01:00 committed by GitHub
commit 4437e29b31

View file

@ -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
}