git-lfs/commands/command_version.go

30 lines
514 B
Go
Raw Normal View History

package commands
2013-09-23 01:08:31 +00:00
import (
2015-03-19 19:30:55 +00:00
"github.com/github/git-lfs/lfs"
2014-06-26 20:05:23 +00:00
"github.com/spf13/cobra"
2013-09-23 01:08:31 +00:00
)
2014-06-26 20:05:23 +00:00
var (
lovesComics bool
2013-09-23 01:08:31 +00:00
2014-06-26 20:05:23 +00:00
versionCmd = &cobra.Command{
Use: "version",
2014-06-26 21:22:24 +00:00
Short: "Show the version number",
2014-06-26 20:05:23 +00:00
Run: versionCommand,
}
)
2013-09-23 01:08:31 +00:00
2014-06-26 20:05:23 +00:00
func versionCommand(cmd *cobra.Command, args []string) {
2015-03-19 19:30:55 +00:00
Print(lfs.UserAgent)
2014-06-26 20:05:23 +00:00
if lovesComics {
Print("Nothing may see Gah Lak Tus and survive!")
2013-09-23 01:08:31 +00:00
}
}
func init() {
2014-06-26 20:05:23 +00:00
versionCmd.Flags().BoolVarP(&lovesComics, "comics", "c", false, "easter egg")
RootCmd.AddCommand(versionCmd)
2013-09-23 01:08:31 +00:00
}