Skip to content

Commit

Permalink
fix: make dev deploy help msg better (#756)
Browse files Browse the repository at this point in the history
  • Loading branch information
UncleGedd committed Jul 2, 2024
1 parent 05f6d16 commit 00331a0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/cmd/dev.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ var devCmd = &cobra.Command{
}

var devDeployCmd = &cobra.Command{
Use: "deploy",
Use: "deploy [BUNDLE_DIR|OCI_REF]",
Args: cobra.MaximumNArgs(1),
Short: lang.CmdDevDeployShort,
Long: lang.CmdDevDeployLong,
Expand Down
4 changes: 2 additions & 2 deletions src/config/lang/lang.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ const (

// uds dev
CmdDevShort = "[beta] Commands useful for developing bundles"
CmdDevDeployShort = "[beta] Creates and deploys a UDS bundle from a given directory in dev mode"
CmdDevDeployLong = "[beta] Creates and deploys a UDS bundle from a given directory in dev mode, setting package options like YOLO mode for faster iteration."
CmdDevDeployShort = "[beta] Creates and deploys a UDS bundle in dev mode"
CmdDevDeployLong = "[beta] Creates and deploys a UDS bundle from a given directory or OCI repository in dev mode, setting package options like YOLO mode for faster iteration."
CmdBundleCreateForceCreate = "For local bundles with local packages, specify whether to create a zarf package even if it already exists."

// uds monitor
Expand Down

0 comments on commit 00331a0

Please sign in to comment.