Skip to content

Commit 336b4d2

Browse files
small fixes around commands messages and comparison operator in js files
1 parent f995c61 commit 336b4d2

17 files changed

Lines changed: 42 additions & 43 deletions

File tree

cmd/add/add.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
func NewAddCmd(f factory.Factory, globalFlags *flags.GlobalFlags, plugins []plugin.Metadata) *cobra.Command {
1212
addCmd := &cobra.Command{
1313
Use: "add",
14-
Short: "Convenience command: adds something to devspace.yaml",
14+
Short: "Adds something to devspace.yaml",
1515
Long: `
1616
#######################################################
1717
#################### devspace add #####################

cmd/add/plugin.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ func newPluginCmd(f factory.Factory) *cobra.Command {
1414
cmd := &pluginCmd{}
1515
pluginCmd := &cobra.Command{
1616
Use: "plugin",
17-
Short: "Add a plugin to devspace",
17+
Short: "Adds a plugin to devspace",
1818
Long: `
1919
#######################################################
2020
############### devspace add plugin ###################

cmd/completion.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ func NewCompletionCmd() *cobra.Command {
4343
return cobra.OnlyValidArgs(cmd, args)
4444
},
4545
ValidArgs: []string{"bash", "zsh"},
46-
Short: "Output shell completion for the given shell (bash or zsh)",
46+
Short: "Outputs shell completion for the given shell (bash or zsh)",
4747
Long: longDescription,
4848
RunE: completion,
4949
}

cmd/deploy.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ func NewDeployCmd(f factory.Factory, globalFlags *flags.GlobalFlags, rawConfig *
1717

1818
deployCmd := &cobra.Command{
1919
Use: "deploy",
20-
Short: "Deploy the project",
20+
Short: "Deploys the project",
2121
Long: `
2222
#######################################################
2323
################## devspace deploy ####################

cmd/list/deployments.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ func newDeploymentsCmd(f factory.Factory, globalFlags *flags.GlobalFlags) *cobra
3232
#######################################################
3333
############# devspace list deployments ###############
3434
#######################################################
35-
Shows the status of all deployments
35+
Lists the status of all deployments
3636
#######################################################
3737
`,
3838
Args: cobra.NoArgs,

cmd/logs.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ func NewLogsCmd(f factory.Factory, globalFlags *flags.GlobalFlags) *cobra.Comman
5050
#######################################################
5151
#################### devspace logs ####################
5252
#######################################################
53-
Logs prints the last log of a pod container and attachs
53+
Prints the last log of a pod container and attachs
5454
to it
5555
5656
Example:

cmd/print.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ func NewPrintCmd(f factory.Factory, globalFlags *flags.GlobalFlags) *cobra.Comma
4545

4646
printCmd := &cobra.Command{
4747
Use: "print",
48-
Short: "Print displays the configuration",
48+
Short: "Prints displays the configuration",
4949
Long: `
5050
#######################################################
5151
################## devspace print #####################

cmd/purge.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ func NewPurgeCmd(f factory.Factory, globalFlags *flags.GlobalFlags, rawConfig *R
1717
}
1818
purgeCmd := &cobra.Command{
1919
Use: "purge",
20-
Short: "Delete deployed resources",
20+
Short: "Deletes deployed resources",
2121
Long: `
2222
#######################################################
2323
################### devspace purge ####################

cmd/remove/remove.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
func NewRemoveCmd(f factory.Factory, globalFlags *flags.GlobalFlags, plugins []plugin.Metadata) *cobra.Command {
1212
removeCmd := &cobra.Command{
1313
Use: "remove",
14-
Short: "Changes devspace configuration",
14+
Short: "Removes devspace configuration",
1515
Long: `
1616
#######################################################
1717
################## devspace remove ####################

cmd/render.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ func NewRenderCmd(f factory.Factory, globalFlags *flags.GlobalFlags, rawConfig *
2121

2222
renderCmd := &cobra.Command{
2323
Use: "render",
24-
Short: "Render builds all defined images and shows the yamls that would be deployed",
24+
Short: "Builds all defined images and shows the yamls that would be deployed",
2525
Long: `
2626
#######################################################
2727
################## devspace render #####################

0 commit comments

Comments
 (0)