Skip to content
This repository has been archived by the owner on Dec 9, 2023. It is now read-only.

Commit

Permalink
fix(projects): fix git commit message style
Browse files Browse the repository at this point in the history
  • Loading branch information
honghuangdc committed May 27, 2023
1 parent 8e5053b commit 07ebda1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ cli.command('').action(async (args: any) => {

await execa('git', ['add', '.']);

await execa('git', ['commit', '-m', 'docs(projects): CHANGELOG.md'], { cwd });
await execa('git', ['commit', '-m docs(projects): CHANGELOG.md'], { cwd });

await execa('git', ['push', pushUrl, `HEAD:${config.gitMainBranch}`], { cwd });
}
Expand Down

0 comments on commit 07ebda1

Please sign in to comment.