Skip to content

Commit bbeea39

Browse files
committed
chore(cli): tighten the local-bundle flag descriptions
1 parent 4a1ebb1 commit bbeea39

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -254,15 +254,15 @@ export function configureDeployCommand(program: Command) {
254254
.addOption(
255255
new CommandOption(
256256
"--local-bundle",
257-
"Experimental: bundle the project locally and upload only the build output; the build server runs the container build. Useful when the remote install/bundle step doesn't work for your project setup. Implies using the native build server."
257+
"Experimental: install and bundle locally, upload only the build output, and build the image remotely. Implies using the native build server."
258258
)
259259
.implies({ nativeBuildServer: true })
260260
.conflicts(["localBuild", "forceLocalBuild"])
261261
)
262262
.addOption(
263263
new CommandOption(
264264
"--from-bundle <dir>",
265-
"Internal: build the deployment image from a pre-built bundle directory, skipping the bundling step. Implies a local build."
265+
"Internal: build the image from a pre-built bundle directory. Implies a local build."
266266
)
267267
.implies({ localBuild: true })
268268
.conflicts(["nativeBuildServer", "localBundle"])

0 commit comments

Comments
 (0)