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
1 changed files with 1 additions and 1 deletions

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
}