From b24caf8ae21b89014ace8bb7171c69715098f422 Mon Sep 17 00:00:00 2001 From: ezl-keygraph Date: Thu, 16 Jul 2026 18:58:27 +0530 Subject: [PATCH] style(cli): collapse usage hint now that the beta tag is gone --- apps/cli/src/index.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/apps/cli/src/index.ts b/apps/cli/src/index.ts index a788fc4..4a38901 100644 --- a/apps/cli/src/index.ts +++ b/apps/cli/src/index.ts @@ -165,9 +165,7 @@ function parseStartArgs(argv: string[]): ParsedStartArgs { if (!url || !repo) { console.error('ERROR: --url and --repo are required'); - console.error( - `Usage: ${getMode() === 'local' ? './shannon' : 'npx @keygraph/shannon'} start -u -r `, - ); + console.error(`Usage: ${getMode() === 'local' ? './shannon' : 'npx @keygraph/shannon'} start -u -r `); process.exit(1); }