From 11abce9ea4c976bab8a1e5de1d5204250c615ad3 Mon Sep 17 00:00:00 2001 From: Grzegorz Godlewski Date: Wed, 7 Aug 2024 21:53:27 +0200 Subject: [PATCH] refactor: re-ordered commands in the main cli --- src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index 8cf140e..c502d69 100755 --- a/src/main.ts +++ b/src/main.ts @@ -16,8 +16,8 @@ program.version(version); // }); program - .addCommand(manifestCommand) .addCommand(newCommand) + .addCommand(manifestCommand) .addCommand(runOnGolemCommand) .addCommand(invoiceCommand) .addCommand(inspectCommand)