We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6407a2 commit 7db5cacCopy full SHA for 7db5cac
packages/cli-v3/src/commands/deploy.ts
@@ -128,7 +128,9 @@ export function configureDeployCommand(program: Command) {
128
).hideHelp()
129
)
130
// Local build options
131
- .option("--force-local-build", "Force a local build of the image")
+ .addOption(
132
+ new CommandOption("--force-local-build", "Force a local build of the image").hideHelp()
133
+ )
134
.addOption(new CommandOption("--push", "Push the image after local builds").hideHelp())
135
.addOption(
136
new CommandOption("--no-push", "Do not push the image after local builds").hideHelp()
0 commit comments