Skip to content

Commit da383b3

Browse files
authored
Merge pull request helm#2518 from sgoings/fixup-plugin-install-grammar
fix(plugins): exists --> exist
2 parents 6872b22 + e7a51d5 commit da383b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/plugin/installer/installer.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ type Installer interface {
4444
// Install installs a plugin to $HELM_HOME.
4545
func Install(i Installer) error {
4646
if _, pathErr := os.Stat(path.Dir(i.Path())); os.IsNotExist(pathErr) {
47-
return errors.New(`plugin home "$HELM_HOME/plugins" does not exists`)
47+
return errors.New(`plugin home "$HELM_HOME/plugins" does not exist`)
4848
}
4949

5050
if _, pathErr := os.Stat(i.Path()); !os.IsNotExist(pathErr) {

0 commit comments

Comments
 (0)