Merge pull request #2518 from sgoings/fixup-plugin-install-grammar

fix(plugins): exists --> exist
pull/2528/head
Seth Goings 8 years ago committed by GitHub
commit da383b35e5

@ -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) {

Loading…
Cancel
Save