From e25cf045e31616814de47d1545b6e560d5a1cb16 Mon Sep 17 00:00:00 2001 From: David Dal Busco Date: Thu, 3 Apr 2025 12:51:04 +0200 Subject: [PATCH] fix: config command does not interpret mode --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 0237ff06..9f0b684c 100644 --- a/src/index.ts +++ b/src/index.ts @@ -124,7 +124,7 @@ export const run = async () => { await deploy(args); break; case 'config': - await config(); + await config(args); break; case 'clear': await clear(args);