mirror of
https://github.com/lukaszraczylo/semver-generator.git
synced 2026-06-11 23:29:30 +00:00
Add -v / --version command and appropriate build flags.
This commit is contained in:
+7
-2
@@ -32,8 +32,9 @@ import (
|
||||
)
|
||||
|
||||
var (
|
||||
err error
|
||||
repo *Setup
|
||||
err error
|
||||
repo *Setup
|
||||
PKG_VERSION string
|
||||
)
|
||||
|
||||
type Wording struct {
|
||||
@@ -177,6 +178,10 @@ func (s *Setup) getSemver() string {
|
||||
}
|
||||
|
||||
func main() {
|
||||
if varShowVersion {
|
||||
fmt.Println("semver-gen", PKG_VERSION, "\tMore information: https://github.com/lukaszraczylo/semver-generator")
|
||||
return
|
||||
}
|
||||
if repo.Generate {
|
||||
err := repo.ReadConfig(repo.LocalConfigFile)
|
||||
if err != nil {
|
||||
|
||||
+5
-1
@@ -30,7 +30,9 @@ var rootCmd = &cobra.Command{
|
||||
|
||||
Effortless semantic version generator with git commit keywords matching, allowing you to focus on the development.
|
||||
Visit https://github.com/lukaszraczylo/semver-generator for more information, documentation and examples.`,
|
||||
Run: func(cmd *cobra.Command, args []string) {},
|
||||
Run: func(cmd *cobra.Command, args []string) {
|
||||
main()
|
||||
},
|
||||
}
|
||||
|
||||
func Execute() {
|
||||
@@ -55,6 +57,7 @@ func (r *Setup) setupCobra() {
|
||||
var (
|
||||
varRepoName, varLocalCfg string
|
||||
varUseLocal bool
|
||||
varShowVersion bool
|
||||
)
|
||||
|
||||
func init() {
|
||||
@@ -64,5 +67,6 @@ func init() {
|
||||
rootCmd.PersistentFlags().StringVarP(&varRepoName, "repository", "r", "https://github.com/lukaszraczylo/simple-gql-client", "Remote repository URL.")
|
||||
rootCmd.PersistentFlags().StringVarP(&varLocalCfg, "config", "c", "config.yaml", "Path to config file")
|
||||
rootCmd.PersistentFlags().BoolVarP(&varUseLocal, "local", "l", false, "Use local repository")
|
||||
rootCmd.PersistentFlags().BoolVarP(&varShowVersion, "version", "v", false, "Display version")
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user