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")