From 4c895229ec0ce6b0d6e974d16122b3e3b7e48b64 Mon Sep 17 00:00:00 2001 From: Alice Gaudon Date: Wed, 24 Nov 2021 18:18:19 +0100 Subject: [PATCH] back/cli: fix main command not able to accept args --- src/Application.ts | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/src/Application.ts b/src/Application.ts index e6f4ae9..3e96abe 100644 --- a/src/Application.ts +++ b/src/Application.ts @@ -247,6 +247,7 @@ export default abstract class Application implements Extendable { const args = process.argv; + // Flags const flags = { verbose: false, @@ -272,9 +273,13 @@ export default abstract class Application implements Extendable