Skip to content

Commit

Permalink
chore: refine the command descriptions (#1297)
Browse files Browse the repository at this point in the history
  • Loading branch information
liu-hm19 authored Sep 29, 2024
1 parent 199fcbd commit a03a070
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions pkg/cmd/project/list/cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ func NewCmd() *cobra.Command {
# List the applied project in a specified backend and specified workspaces
kusion project list --backend default --workspace dev,default
# List the applied project in a specified backend and all the workspaces
kusion project list --backend default --all`)
)
Expand Down
6 changes: 3 additions & 3 deletions pkg/cmd/release/release.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@ import (
)

var relLong = i18n.T(`
Commands for managing Kusion release files.
Commands for observing and operating Kusion release files.
These commands help you manage the lifecycle of Kusion release files. `)
These commands help you observe and operate the Kusion release files of a Project in a Workspace. `)

// NewCmdRel returns an initialized Command instance for 'release' sub command.
func NewCmdRel(streams genericiooptions.IOStreams) *cobra.Command {
cmd := &cobra.Command{
Use: "release",
DisableFlagsInUseLine: true,
Short: "Manage Kusion release files",
Short: "Observe and operate Kusion release files",
Long: templates.LongDesc(relLong),
Run: cmdutil.DefaultSubCommandRun(streams.ErrOut),
}
Expand Down

0 comments on commit a03a070

Please sign in to comment.