Skip to content

Commit

Permalink
Fix bug with new init
Browse files Browse the repository at this point in the history
  • Loading branch information
skymen committed Jan 19, 2025
1 parent 879d46f commit 9b1d6a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export default function initialiseProject() {
process1.on("exit", () => {
if (!fs.existsSync(".git")) {
let process2 = exec(
"git init && git add -A && git commit -m 'Initial commit'"
'git init && git add -A && git commit -m "Initial commit"'
);
process2.stdout.pipe(process.stdout);
process2.stderr.pipe(process.stderr);
Expand Down

0 comments on commit 9b1d6a6

Please sign in to comment.