Skip to content

Commit 843eb63

Browse files
test123456789012345lgaticaq
authored andcommitted
fix: do not return anything on publish
1 parent f6f24a3 commit 843eb63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/publish.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ module.exports = async (pluginConfig, ctx) => {
2121
options.key = ctx.env.SSH_PRIVATE_KEY
2222
}
2323
const command = `export VERSION=${ctx.nextRelease.version};\n${pluginConfig.publishCmd}`
24-
return await exec(command, options)
24+
await exec(command, options)
2525
} catch (err) {
2626
ctx.message = err.message
2727
throw getError('ESSHCOMMAND', ctx)

0 commit comments

Comments
 (0)