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:
parent
168f3ae389
commit
43a82bb04e
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@ export async function cmd({ flags }: { config: AstroConfig; flags: Arguments })
|
||||||
if (!response.ok) {
|
if (!response.ok) {
|
||||||
// Unauthorized
|
// Unauthorized
|
||||||
if(response.status === 401) {
|
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);
|
process.exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue