We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37cf3c5 commit 9714a6fCopy full SHA for 9714a6f
CHANGELOG.md
@@ -1 +1,2 @@
1
- The hosting emulator integration with web frameworks now has improved support for HMR and dev-tools. (#5582)
2
+- Fixes an issue where `init hosting:github` would hang if it could not access a repository's public key. (#5317)
src/init/features/hosting/github.ts
@@ -418,7 +418,7 @@ async function promptForRepo(
418
key = body.key;
419
keyId = body.key_id;
420
} catch (e: any) {
421
- if (e.status === 403) {
+ if ([403, 404].includes(e.status)) {
422
logger.info();
423
424
logWarning(
0 commit comments