We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6046e9 commit 24d9a5cCopy full SHA for 24d9a5c
src/publish.js
@@ -21,7 +21,8 @@ module.exports = async (pluginConfig, ctx) => {
21
options.key = ctx.env.SSH_PRIVATE_KEY
22
}
23
const command = `export VERSION=${ctx.nextRelease.version};\n${pluginConfig.publishCmd}`
24
- await exec(command, options)
+ const output = await exec(command, options)
25
+ process.stdout.write(output)
26
} catch (err) {
27
ctx.message = err.message
28
throw getError('ESSHCOMMAND', ctx)
0 commit comments