Skip to content

Commit

Permalink
fix: removed quotes out of git message
Browse files Browse the repository at this point in the history
  • Loading branch information
Bugs5382 committed Jan 1, 2024
1 parent c6bffa7 commit eb51c02
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/modules/git.ts
Expand Up @@ -19,9 +19,9 @@ export async function init (folder: string, step: string): Promise<void> {
}
case 'post': {
await execFile('git', ['add', '.'], { cwd: folder })
await execFile('git', ['commit', '-m', '"chore: initial creation [ci skip]"'], { cwd: folder })
await execFile('git', ['commit', '-m', 'chore: initial creation [ci skip]'], { cwd: folder })
await execFile('git', ['switch', '--orphan', 'main'], { cwd: folder })
await execFile('git', ['commit', '--allow-empty', '-m', '"chore: initial creation [ci skip]"'], { cwd: folder })
await execFile('git', ['commit', '--allow-empty', '-m', 'chore: initial creation [ci skip]'], { cwd: folder })
await execFile('git', ['checkout', 'develop'], { cwd: folder })
await execFile('git', ['-u', 'origin', 'main', 'develop'])
break
Expand Down

0 comments on commit eb51c02

Please sign in to comment.