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.
conflicts
1 parent 653920c commit b44bfb8Copy full SHA for b44bfb8
packages/cli-v3/src/commands/deploy.ts
@@ -197,9 +197,12 @@ export function configureDeployCommand(program: Command) {
197
)
198
// Local build options
199
.addOption(
200
- new CommandOption("--force-local-build", "Deprecated alias for --local-build").implies({
201
- localBuild: true,
202
- })
+ new CommandOption("--force-local-build", "Deprecated alias for --local-build")
+ .implies({
+ localBuild: true,
203
+ })
204
+ .conflicts("nativeBuildServer")
205
+ .hideHelp()
206
207
208
new CommandOption("--local-build", "Build the deployment image locally").conflicts(
0 commit comments