diff options
author | 2022-01-20 04:19:04 +0800 | |
---|---|---|
committer | 2022-01-19 15:19:04 -0500 | |
commit | e0def89697a6825150007ffbafb7d9fdb82602cc (patch) | |
tree | 375bc64a9df88495a65ce5ca87041a9309ad0569 | |
parent | da1cc0fd2b05e49aedb0ea686f082f72e67dd5f7 (diff) | |
download | astro-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.ts | 2 |
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')); } |