Skip to content

Commit

Permalink
Remove optional from flag description
Browse files Browse the repository at this point in the history
  • Loading branch information
tdmanv authored Aug 21, 2019
1 parent 9a4edf2 commit f11f18d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/kando/chronicle_push.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ func newChroniclePushCommand() *cobra.Command {
}
cmd.PersistentFlags().StringVarP(&params.ProfilePath, profilePathFlagName, "p", "", "Path to a Profile as a JSON string (required)")
cmd.MarkPersistentFlagRequired(profilePathFlagName)
cmd.PersistentFlags().StringVarP(&params.ArtifactFile, artifactPathFlagName, "s", "", "Specify a file that contains an object store suffix (optional)")
cmd.PersistentFlags().StringVarP(&params.ArtifactFile, artifactPathFlagName, "s", "", "Specify a file that contains an object store suffix")
cmd.MarkPersistentFlagRequired(artifactPathFlagName)
cmd.PersistentFlags().StringVarP(&params.EnvDir, envDirFlagName, "e", "", "Get environment variables from a envdir style directory(optional)")
cmd.PersistentFlags().DurationVarP(&params.Frequency, frequencyFlagName, "f", time.Minute, "The Frequency to push to object storage ")
Expand Down

0 comments on commit f11f18d

Please sign in to comment.