From e7a51d542415dd347a89e21b48c573da8eb1a3dc Mon Sep 17 00:00:00 2001 From: Seth Goings Date: Tue, 30 May 2017 09:54:46 -0600 Subject: [PATCH] fix(plugins): exists --> exist --- pkg/plugin/installer/installer.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/plugin/installer/installer.go b/pkg/plugin/installer/installer.go index 4cc19ce28..6ecec980a 100644 --- a/pkg/plugin/installer/installer.go +++ b/pkg/plugin/installer/installer.go @@ -44,7 +44,7 @@ type Installer interface { // Install installs a plugin to $HELM_HOME. func Install(i Installer) error { if _, pathErr := os.Stat(path.Dir(i.Path())); os.IsNotExist(pathErr) { - return errors.New(`plugin home "$HELM_HOME/plugins" does not exists`) + return errors.New(`plugin home "$HELM_HOME/plugins" does not exist`) } if _, pathErr := os.Stat(i.Path()); !os.IsNotExist(pathErr) {