Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlbert Nigmatzianov <albertnigma@gmail.com>2017-04-26 22:58:10 +0300
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2017-04-26 23:23:20 +0300
commitf0f69d03c551acb8ac2eeedaad579cf0b596f9ef (patch)
tree542b5f1362a26c463925395bbaa9e49a170c429e /commands/release.go
parent8fbec5993034bb63d3583d26dfed973d8045d492 (diff)
commands: Make first letter of flags' usage lowercase
Diffstat (limited to 'commands/release.go')
-rw-r--r--commands/release.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/commands/release.go b/commands/release.go
index f6d98e29f..6c14c5d8b 100644
--- a/commands/release.go
+++ b/commands/release.go
@@ -50,9 +50,9 @@ func createReleaser() *releaseCommandeer {
return r.release()
}
- r.cmd.PersistentFlags().IntVarP(&r.patchLevel, "patch", "p", 0, "Patch level, defaults to 0 for main releases")
- r.cmd.PersistentFlags().IntVarP(&r.step, "step", "s", -1, "Release step, defaults to -1 for all steps.")
- r.cmd.PersistentFlags().BoolVarP(&r.skipPublish, "skip-publish", "", false, "Skip all publishing pipes of the release")
+ r.cmd.PersistentFlags().IntVarP(&r.patchLevel, "patch", "p", 0, "patch level, defaults to 0 for main releases")
+ r.cmd.PersistentFlags().IntVarP(&r.step, "step", "s", -1, "release step, defaults to -1 for all steps.")
+ r.cmd.PersistentFlags().BoolVarP(&r.skipPublish, "skip-publish", "", false, "skip all publishing pipes of the release")
return r
}