0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-02-10 22:38:53 -05:00

Fix verbiage of unauthorized link warning

This commit is contained in:
Matthew Phillips 2024-02-13 16:57:10 -05:00
parent 168f3ae389
commit 43a82bb04e

View file

@ -30,7 +30,7 @@ export async function cmd({ flags }: { config: AstroConfig; flags: Arguments })
if (!response.ok) {
// Unauthorized
if(response.status === 401) {
console.error('Unauthorized. Are you logged-in? Run `astro db login` to authenticate and then try linking again.');
console.error('Unauthorized. Are you logged in? Run `astro db login` to authenticate and then try linking again.');
process.exit(1);
}