From 58ff2170ab1c600f083dd31500164c75a0ebc843 Mon Sep 17 00:00:00 2001 From: yutakobaayshidev Date: Fri, 15 Mar 2024 04:17:03 +0900 Subject: [PATCH] fix: initial commit message --- .changeset/twelve-cats-turn.md | 5 +++++ src/helpers/git.ts | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .changeset/twelve-cats-turn.md diff --git a/.changeset/twelve-cats-turn.md b/.changeset/twelve-cats-turn.md new file mode 100644 index 0000000..f18e651 --- /dev/null +++ b/.changeset/twelve-cats-turn.md @@ -0,0 +1,5 @@ +--- +"@hanabi.rest/cli": patch +--- + +fix: fix: initial commit message diff --git a/src/helpers/git.ts b/src/helpers/git.ts index 8a05c83..6ba952e 100644 --- a/src/helpers/git.ts +++ b/src/helpers/git.ts @@ -42,7 +42,7 @@ export function tryGitInit(root: string): boolean { } execSync("git add -A", { stdio: "ignore" }); - execSync('git commit -m "Initial commit from Create Next App"', { + execSync('git commit -m "Initial commit from Hanabi.rest"', { stdio: "ignore", }); return true;