From e0def89697a6825150007ffbafb7d9fdb82602cc Mon Sep 17 00:00:00 2001 From: Jang Rush Date: Thu, 20 Jan 2022 04:19:04 +0800 Subject: [PATCH] Update .degit cache path in error message (#2400) astro's repo changed from snowpack/astro to withastro/astro. Thank @raph5 --- packages/create-astro/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/create-astro/src/index.ts b/packages/create-astro/src/index.ts index 898d6b2486..677190d468 100644 --- a/packages/create-astro/src/index.ts +++ b/packages/create-astro/src/index.ts @@ -108,7 +108,7 @@ export async function main() { // Warning for issue #655 if (err.message === 'zlib: unexpected end of file') { - console.log(yellow("This seems to be a cache related problem. Remove the folder '~/.degit/github/snowpackjs' to fix this error.")); + console.log(yellow("This seems to be a cache related problem. Remove the folder '~/.degit/github/withastro' to fix this error.")); console.log(yellow('For more information check out this issue: https://github.com/withastro/astro/issues/655')); }