From f6d2efb6d85d4c896322ebb1d5ab6336bb9a8003 Mon Sep 17 00:00:00 2001 From: quinm0 Date: Wed, 29 Apr 2026 00:01:29 -0400 Subject: [PATCH] cool --- bun/soupclown/index.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bun/soupclown/index.ts b/bun/soupclown/index.ts index 0ef052f..b378c90 100644 --- a/bun/soupclown/index.ts +++ b/bun/soupclown/index.ts @@ -7,10 +7,10 @@ export function RUN_CLI(){ c .name('soupclown') .description('Soupclown system') + .option('--showConfig', 'display the configured config') + .parse(); - c.option('--showConfig', 'display the configured config') - - const options = c.parse().opts(); + const options = c.opts(); if(options.showConfig){ console.log(JSON.stringify(SC_CONFIG, null, 2))