git-lfs/commands/command_version.go

29 lines
484 B
Go
Raw Normal View History

package commands
2013-09-23 01:08:31 +00:00
import (
"github.com/github/git-lfs/httputil"
"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{
2015-09-17 22:08:28 +00:00
Use: "version",
Run: versionCommand,
2014-06-26 20:05:23 +00:00
}
)
2013-09-23 01:08:31 +00:00
2014-06-26 20:05:23 +00:00
func versionCommand(cmd *cobra.Command, args []string) {
Print(httputil.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
}