Skip to content

Commit

Permalink
fix wge cli bootstrap command description (#3479)
Browse files Browse the repository at this point in the history
* fix wge cli bootstrap command description

* capital letter

---------

Co-authored-by: Eneko Fernandez <[email protected]>
  • Loading branch information
waleedhammam and enekofb authored Oct 12, 2023
1 parent 5714514 commit e42f094
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cmd/gitops/app/bootstrap/cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ import (

const (
cmdName = "bootstrap"
cmdShortDescription = `gitops bootstrap installs Weave GitOps Enterprise in simple steps:
cmdShortDescription = "Installs Weave GitOps Enterprise in simple steps"
cmdLongDescription = `Installs Weave GitOps Enterprise in simple steps:
- Entitlements: check that you have valid entitlements.
- Flux: check or bootstrap Flux.
- Weave Gitops: check or install a supported Weave GitOps version with default configuration.
Expand Down Expand Up @@ -47,6 +48,7 @@ func Command(opts *config.Options) *cobra.Command {
cmd := &cobra.Command{
Use: cmdName,
Short: cmdShortDescription,
Long: cmdLongDescription,
Example: cmdExamples,
RunE: getBootstrapCmdRun(opts),
}
Expand Down

0 comments on commit e42f094

Please sign in to comment.