From 8b8000ecc495e971b43c2bab3149eac55c177b0a Mon Sep 17 00:00:00 2001 From: Michelle Noorali Date: Mon, 18 Apr 2016 21:47:56 -0600 Subject: [PATCH] feat(helm): implement home command --- cmd/helm/home.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/helm/home.go b/cmd/helm/home.go index 3b091931b..fce35ab2a 100644 --- a/cmd/helm/home.go +++ b/cmd/helm/home.go @@ -1,7 +1,7 @@ package main import ( - "fmt" + "os" "github.com/spf13/cobra" ) @@ -23,5 +23,5 @@ func init() { } func Home(cmd *cobra.Command, args []string) { - fmt.Println("helm home was called") + cmd.Printf(os.ExpandEnv(helmHome) + "\n") }