From 82987105a6fd6ec272c170fb094453a0267143be Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Mon, 28 Oct 2024 16:58:34 +0100 Subject: [PATCH] fix(cli): fix wmill instance push --base-url and --instance --- cli/instance.ts | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/cli/instance.ts b/cli/instance.ts index bc3f0968b7..dc8b9050b3 100644 --- a/cli/instance.ts +++ b/cli/instance.ts @@ -650,7 +650,6 @@ const command = new Command() .option("--skip-configs", "Skip pulling configs (worker groups and SMTP)") .option("--skip-groups", "Skip pulling instance groups") .option("--include-workspaces", "Also pull workspaces") - .action(instancePull as any) .command("push") .description( @@ -663,13 +662,9 @@ const command = new Command() .option("--skip-groups", "Skip pushing instance groups") .option("--include-workspaces", "Also push workspaces") .option( - "--instance", + "--instance ", "Name of the instance to push to, override the active instance" ) - .option( - "--base-url", - "If used with --token, will be used as the base url for the instance" - ) .action(instancePush as any) .command("whoami") .description("Display information about the currently logged-in user")