From 377a43385eb41f4af4a205279f3cd0140887fd31 Mon Sep 17 00:00:00 2001 From: Matt Butcher Date: Mon, 6 Jun 2016 21:21:36 -0600 Subject: [PATCH] fix(*): fixed import paths --- pkg/chartutil/create.go | 2 +- pkg/chartutil/create_test.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/chartutil/create.go b/pkg/chartutil/create.go index fa6634852..15c726a17 100644 --- a/pkg/chartutil/create.go +++ b/pkg/chartutil/create.go @@ -6,7 +6,7 @@ import ( "os" "path/filepath" - "github.com/kubernetes/helm/pkg/proto/hapi/chart" + "k8s.io/helm/pkg/proto/hapi/chart" ) const ( diff --git a/pkg/chartutil/create_test.go b/pkg/chartutil/create_test.go index 19ee11ed6..5c7f0e6e2 100644 --- a/pkg/chartutil/create_test.go +++ b/pkg/chartutil/create_test.go @@ -6,7 +6,7 @@ import ( "path/filepath" "testing" - "github.com/kubernetes/helm/pkg/proto/hapi/chart" + "k8s.io/helm/pkg/proto/hapi/chart" ) func TestCreate(t *testing.T) {