From f9511bb36b90686a6d39ff89423125bcfc9dbce3 Mon Sep 17 00:00:00 2001 From: Zane Whitfield Date: Thu, 16 May 2024 11:00:17 -0700 Subject: [PATCH] Remove env flag for run:inside --- packages/cli/src/commands/run/inside.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/cli/src/commands/run/inside.ts b/packages/cli/src/commands/run/inside.ts index a142c276f4..d4a44e0515 100644 --- a/packages/cli/src/commands/run/inside.ts +++ b/packages/cli/src/commands/run/inside.ts @@ -19,7 +19,6 @@ export default class RunInside extends Command { app: flags.app({required: true}), remote: flags.remote(), 'exit-code': flags.boolean({char: 'x', description: 'passthrough the exit code of the remote command'}), - env: flags.string({char: 'e', description: "environment variables to set (use ';' to split multiple vars)"}), listen: flags.boolean({description: 'listen on a local port', hidden: true}), } @@ -37,7 +36,6 @@ export default class RunInside extends Command { app: flags.app, command: buildCommand(argv.slice(1) as string[]), dyno: argv[0] as string, - env: flags.env, heroku: this.heroku, listen: flags.listen, }