From 54b82ca416331c7abbf25a89b14dd6348f70eb32 Mon Sep 17 00:00:00 2001 From: Matthew Phillips Date: Tue, 13 Feb 2024 17:07:45 -0500 Subject: [PATCH] Add some color to the unauthorized message --- packages/db/src/core/cli/commands/link/index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/db/src/core/cli/commands/link/index.ts b/packages/db/src/core/cli/commands/link/index.ts index e6c957e993..e2b9008eac 100644 --- a/packages/db/src/core/cli/commands/link/index.ts +++ b/packages/db/src/core/cli/commands/link/index.ts @@ -1,5 +1,6 @@ import type { AstroConfig } from 'astro'; import { mkdir, writeFile } from 'node:fs/promises'; +import { red } from 'kleur/colors'; import prompts from 'prompts'; import type { Arguments } from 'yargs-parser'; import { PROJECT_ID_FILE, getSessionIdFromFile } from '../../../tokens.js'; @@ -30,7 +31,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(`${red('Unauthorized')}.\n\nAre you logged in? Run \`astro db login\` to authenticate and then try linking again.`); process.exit(1); }