Skip to content

Commit

Permalink
Revert the cm all
Browse files Browse the repository at this point in the history
  • Loading branch information
Wentao-Kuang committed Aug 22, 2023
1 parent c483abc commit c529672
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/cli/src/cli/github/github.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ export class Github {
*
*/
commit(message: string): void {
this.logger.info({ repository: this.repo }, 'GitHub: Commit');
execFileSync('git', ['commit', '-m', message], { cwd: this.repoName }).toString().trim();
this.logger.info({ repository: this.repo }, 'GitHub: Commit all');
execFileSync('git', ['commit', '-am', message], { cwd: this.repoName }).toString().trim();
}

/**
Expand Down

0 comments on commit c529672

Please sign in to comment.