Skip to content

Commit

Permalink
Change help message wording.
Browse files Browse the repository at this point in the history
  • Loading branch information
GrahamDumpleton committed Aug 8, 2023
1 parent f3abddf commit d16dde7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions client-programs/pkg/cmd/workshop_publish_cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ func (p *ProjectInfo) NewWorkshopPublishCmd() *cobra.Command {
&o.RegistryFlags.CACertPaths,
"registry-ca-cert-path",
nil,
"Add CA certificates for registry API (format: /tmp/foo) (can be specified multiple times)",
"Add CA certificates for registry API",
)
c.Flags().BoolVar(
&o.RegistryFlags.VerifyCerts,
Expand All @@ -398,25 +398,25 @@ func (p *ProjectInfo) NewWorkshopPublishCmd() *cobra.Command {
&o.RegistryFlags.Username,
"registry-username",
"",
"Set username for auth ($IMGPKG_USERNAME)",
"Set username for registry authentication",
)
c.Flags().StringVar(
&o.RegistryFlags.Password,
"registry-password",
"",
"Set password for auth ($IMGPKG_PASSWORD)",
"Set password for registry authentication",
)
c.Flags().StringVar(
&o.RegistryFlags.Token,
"registry-token",
"",
"Set token for auth ($IMGPKG_TOKEN)",
"Set token for registry authentication",
)
c.Flags().BoolVar(
&o.RegistryFlags.Anon,
"registry-anon",
false,
"Set anonymous auth ($IMGPKG_ANON)",
"Set anonymous for registry authentication",
)

c.Flags().DurationVar(
Expand Down

0 comments on commit d16dde7

Please sign in to comment.