Commit da383b35 authored by Seth Goings's avatar Seth Goings Committed by GitHub

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

fix(plugins): exists --> exist
parents 6872b22f e7a51d54
......@@ -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) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment