Skip to content

Commit 670c3c5

Browse files
committed
Fix initializeGit
1 parent 55212aa commit 670c3c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/create-react-dependency/stages/initializeGit.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const initializeGit = name => {
1010

1111
spawnSync('git', ['init'], { stdio: 'inherit' });
1212
spawnSync('git', ['add', '*'], { stdio: 'inherit' });
13-
spawnSync('git', ['commit', '-m', '"First Commit"'], { stdio: 'inherit' });
13+
spawnSync('git', ['commit', '-m', 'First Commit'], { stdio: 'inherit' });
1414
} catch (err) {
1515
console.log(`\x1b[31m${err}\x1b[0m`);
1616
}

0 commit comments

Comments
 (0)