You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/cli-v3/src/commands/deploy.ts
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -254,15 +254,15 @@ export function configureDeployCommand(program: Command) {
254
254
.addOption(
255
255
newCommandOption(
256
256
"--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."
258
258
)
259
259
.implies({nativeBuildServer: true})
260
260
.conflicts(["localBuild","forceLocalBuild"])
261
261
)
262
262
.addOption(
263
263
newCommandOption(
264
264
"--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."
0 commit comments