Skip to content

Commit

Permalink
fix: fixed npx executable for git-cliff
Browse files Browse the repository at this point in the history
  • Loading branch information
favna committed Mar 5, 2023
1 parent cdd7baa commit cde7e4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/update-changelog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export function updateChangelog(options: Options, newVersion: string) {
return doActionAndLog('Updating Changelog', () => {
if (!options.dryRun) {
execSync(
`npx git cliff --tag ${options.tagTemplate} --prepend ./CHANGELOG.md -u -c ./cliff.toml ${
`npx git-cliff --tag ${options.tagTemplate} --prepend ./CHANGELOG.md -u -c ./cliff.toml ${
isNullishOrEmpty(repositoryRootDirectory) ? '' : `-r ${repositoryRootDirectory}/ --include-path "${options.packagePath}/*"`
}`
);
Expand Down

0 comments on commit cde7e4c

Please sign in to comment.