Skip to content

Commit 7db5cac

Browse files
committed
Do not show the new flag in the help output
1 parent c6407a2 commit 7db5cac

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/cli-v3/src/commands/deploy.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,9 @@ export function configureDeployCommand(program: Command) {
128128
).hideHelp()
129129
)
130130
// Local build options
131-
.option("--force-local-build", "Force a local build of the image")
131+
.addOption(
132+
new CommandOption("--force-local-build", "Force a local build of the image").hideHelp()
133+
)
132134
.addOption(new CommandOption("--push", "Push the image after local builds").hideHelp())
133135
.addOption(
134136
new CommandOption("--no-push", "Do not push the image after local builds").hideHelp()

0 commit comments

Comments
 (0)