From 8c1e324d943682eef5a1716f3a5910b367e0a62b Mon Sep 17 00:00:00 2001 From: jeetiss Date: Tue, 19 Nov 2019 21:37:28 +0300 Subject: [PATCH] fix updating the changelog with npm --- packages/shipjs/src/step/prepare/updateChangelog.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/shipjs/src/step/prepare/updateChangelog.js b/packages/shipjs/src/step/prepare/updateChangelog.js index 2ca21212..05f1dc91 100644 --- a/packages/shipjs/src/step/prepare/updateChangelog.js +++ b/packages/shipjs/src/step/prepare/updateChangelog.js @@ -19,7 +19,7 @@ export default ({ config, firstRelease, releaseCount, dir, dryRun }) => .join(' '); const execPath = path.resolve( require.main.filename, - '../../node_modules/.bin/conventional-changelog' + '../../../../node_modules/.bin/conventional-changelog' ); run({ command: `${execPath} ${args}`, dir, dryRun }); }