1
0
Fork 0
mirror of synced 2024-06-29 19:41:03 +12:00

piping errors to stderr when timeout exceeded

This commit is contained in:
Martin McKeaveney 2021-05-27 11:47:02 +01:00
parent afe525fb0f
commit f5d829015a

View file

@ -42,7 +42,14 @@ module.exports.run = async function ({ inputs, context }) {
try {
const command = processStringSync(inputs.code, context)
const stdout = execSync(command, { timeout: 1000 })
let stdout
try {
stdout = execSync(command, { timeout: 500 })
} catch (err) {
stdout = err.message
}
return {
stdout,
}