diff options
Diffstat (limited to 'packages/create-astro/src')
-rw-r--r-- | packages/create-astro/src/index.ts | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/packages/create-astro/src/index.ts b/packages/create-astro/src/index.ts index 4960062cb..df676fbfb 100644 --- a/packages/create-astro/src/index.ts +++ b/packages/create-astro/src/index.ts @@ -216,9 +216,7 @@ export async function main() { } else if (gitResponse.git) { await execaCommand('git init', { cwd }); } else { - ora().info( - dim(`Sounds good! You can come back and run ${cyan(`git init`)} later.`) - ); + ora().info(dim(`Sounds good! You can come back and run ${cyan(`git init`)} later.`)); } ora().succeed('Setup complete.'); |