File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ func NewCmd() *cobra.Command {
26
26
27
27
# List the applied project in a specified backend and specified workspaces
28
28
kusion project list --backend default --workspace dev,default
29
+
29
30
# List the applied project in a specified backend and all the workspaces
30
31
kusion project list --backend default --all` )
31
32
)
Original file line number Diff line number Diff line change @@ -9,16 +9,16 @@ import (
9
9
)
10
10
11
11
var relLong = i18n .T (`
12
- Commands for managing Kusion release files.
12
+ Commands for observing and operating Kusion release files.
13
13
14
- These commands help you manage the lifecycle of Kusion release files. ` )
14
+ These commands help you observe and operate the Kusion release files of a Project in a Workspace . ` )
15
15
16
16
// NewCmdRel returns an initialized Command instance for 'release' sub command.
17
17
func NewCmdRel (streams genericiooptions.IOStreams ) * cobra.Command {
18
18
cmd := & cobra.Command {
19
19
Use : "release" ,
20
20
DisableFlagsInUseLine : true ,
21
- Short : "Manage Kusion release files" ,
21
+ Short : "Observe and operate Kusion release files" ,
22
22
Long : templates .LongDesc (relLong ),
23
23
Run : cmdutil .DefaultSubCommandRun (streams .ErrOut ),
24
24
}
You can’t perform that action at this time.
0 commit comments