Skip to content

Commit

Permalink
Fixes #1898: Proposal: move downloader and resolver package to /pkg
Browse files Browse the repository at this point in the history
  • Loading branch information
libesz committed Feb 10, 2017
1 parent e440a36 commit 17c9e22
Show file tree
Hide file tree
Showing 32 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion cmd/helm/dependency_build.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ import (

"github.com/spf13/cobra"

"k8s.io/helm/cmd/helm/downloader"
"k8s.io/helm/cmd/helm/helmpath"
"k8s.io/helm/pkg/downloader"
)

const dependencyBuildDesc = `
Expand Down
2 changes: 1 addition & 1 deletion cmd/helm/dependency_update.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ import (
"path/filepath"

"github.com/spf13/cobra"
"k8s.io/helm/cmd/helm/downloader"
"k8s.io/helm/cmd/helm/helmpath"
"k8s.io/helm/pkg/downloader"
)

const dependencyUpDesc = `
Expand Down
2 changes: 1 addition & 1 deletion cmd/helm/fetch.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ import (
"path/filepath"

"github.com/spf13/cobra"
"k8s.io/helm/cmd/helm/downloader"
"k8s.io/helm/cmd/helm/helmpath"
"k8s.io/helm/pkg/chartutil"
"k8s.io/helm/pkg/downloader"
)

const fetchDesc = `
Expand Down
2 changes: 1 addition & 1 deletion cmd/helm/install.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ import (
"github.com/ghodss/yaml"
"github.com/spf13/cobra"

"k8s.io/helm/cmd/helm/downloader"
"k8s.io/helm/cmd/helm/helmpath"
"k8s.io/helm/cmd/helm/strvals"
"k8s.io/helm/pkg/downloader"
"k8s.io/helm/pkg/helm"
"k8s.io/helm/pkg/kube"
"k8s.io/helm/pkg/proto/hapi/release"
Expand Down
2 changes: 1 addition & 1 deletion cmd/helm/verify.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (

"github.com/spf13/cobra"

"k8s.io/helm/cmd/helm/downloader"
"k8s.io/helm/pkg/downloader"
)

const verifyDesc = `
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ import (
"github.com/ghodss/yaml"

"k8s.io/helm/cmd/helm/helmpath"
"k8s.io/helm/cmd/helm/resolver"
"k8s.io/helm/pkg/chartutil"
"k8s.io/helm/pkg/proto/hapi/chart"
"k8s.io/helm/pkg/repo"
"k8s.io/helm/pkg/resolver"
"k8s.io/helm/pkg/urlutil"
)

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 17c9e22

Please sign in to comment.