diff options
author | 2021-06-22 07:06:07 -0700 | |
---|---|---|
committer | 2021-06-22 10:06:07 -0400 | |
commit | b0e41eaf518a6fa0e642535755facf91c444849b (patch) | |
tree | 88b69d3015cd30554d2bf7840cf0ffc2fc222fa8 /packages/create-astro | |
parent | 3be502777ab91c51f8109b8a832b80cc17555a7c (diff) | |
download | astro-b0e41eaf518a6fa0e642535755facf91c444849b.tar.gz astro-b0e41eaf518a6fa0e642535755facf91c444849b.tar.zst astro-b0e41eaf518a6fa0e642535755facf91c444849b.zip |
update small cli fixes (#512)
Diffstat (limited to 'packages/create-astro')
-rw-r--r-- | packages/create-astro/src/index.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/create-astro/src/index.ts b/packages/create-astro/src/index.ts index 240faf7c0..c63cca9ea 100644 --- a/packages/create-astro/src/index.ts +++ b/packages/create-astro/src/index.ts @@ -23,7 +23,7 @@ const POSTPROCESS_FILES = ['package.json']; // some files need processing after export async function main() { console.log('\n' + bold('Welcome to Astro!') + gray(` (create-astro v${version})`)); - console.log(`If you encounter a problem, visit ${cyan('https://github.com/snowpack/astro/issues')} to search or file a new issue.\n`); + console.log(`If you encounter a problem, visit ${cyan('https://github.com/snowpackjs/astro/issues')} to search or file a new issue.\n`); console.log(green(`>`) + gray(` Prepare for liftoff.`)); console.log(green(`>`) + gray(` Gathering mission details...`)); @@ -88,7 +88,7 @@ export async function main() { }) ); - console.log(bold(green('✔ Copied project files'))); + console.log(bold(green('✔') + ' Done!')); console.log('\nNext steps:'); let i = 1; |