summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Jang Rush <weakish@gmail.com> 2022-01-20 04:19:04 +0800
committerGravatar GitHub <noreply@github.com> 2022-01-19 15:19:04 -0500
commite0def89697a6825150007ffbafb7d9fdb82602cc (patch)
tree375bc64a9df88495a65ce5ca87041a9309ad0569
parentda1cc0fd2b05e49aedb0ea686f082f72e67dd5f7 (diff)
downloadastro-e0def89697a6825150007ffbafb7d9fdb82602cc.tar.gz
astro-e0def89697a6825150007ffbafb7d9fdb82602cc.tar.zst
astro-e0def89697a6825150007ffbafb7d9fdb82602cc.zip
Update .degit cache path in error message (#2400)
astro's repo changed from snowpack/astro to withastro/astro. Thank @raph5
-rw-r--r--packages/create-astro/src/index.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/create-astro/src/index.ts b/packages/create-astro/src/index.ts
index 898d6b248..677190d46 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'));
}