fix(cli): add url in registry fetch error message

This commit is contained in:
p-sw 2024-06-15 01:45:18 +09:00
parent 7d2453b4cf
commit 28d5f409f8

View File

@ -18,7 +18,7 @@ export async function getRegistry(
}
return {
message: `Error while fetching registry: ${registryResponse.status} ${registryResponse.statusText}`,
message: `Error while fetching registry from ${registryResponse.url}: ${registryResponse.status} ${registryResponse.statusText}`,
ok: false,
}
}