From 35c7742330a06e5b56a368b91ff4bb7fa77093ab Mon Sep 17 00:00:00 2001 From: Ryan Payton Date: Thu, 7 Sep 2017 13:33:37 -0700 Subject: [PATCH] reverted initLocalRepo call to use CacheIndex since RelativeIndex was causing 'make test' to create a symlink in testing directory --- cmd/helm/init.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/helm/init.go b/cmd/helm/init.go index 2e6b86a4d..6c3038c0c 100644 --- a/cmd/helm/init.go +++ b/cmd/helm/init.go @@ -344,7 +344,7 @@ func ensureDefaultRepos(home helmpath.Home, out io.Writer, skipRefresh bool) err if err != nil { return err } - lr, err := initLocalRepo(home.LocalRepository(localRepositoryIndexFile), home.RelativeIndex("local"), out) + lr, err := initLocalRepo(home.LocalRepository(localRepositoryIndexFile), home.CacheIndex("local"), out) if err != nil { return err }