git-lfs/commands/command_env.go
2014-06-26 15:22:24 -06:00

35 lines
604 B
Go

package commands
import (
"github.com/github/git-media/gitmedia"
"github.com/spf13/cobra"
)
var (
envCmd = &cobra.Command{
Use: "env",
Short: "Show the current environment",
Run: envCommand,
}
)
func envCommand(cmd *cobra.Command, args []string) {
config := gitmedia.Config
if endpoint := config.Endpoint(); len(endpoint) > 0 {
Print("Endpoint=%s", endpoint)
}
for _, remote := range config.Remotes() {
Print("Endpoint (%s)=%s", remote, config.RemoteEndpoint(remote))
}
for _, env := range gitmedia.Environ() {
Print(env)
}
}
func init() {
RootCmd.AddCommand(envCmd)
}