Skip to content

Commit e7a51d5

Browse files
committed
fix(plugins): exists --> exist
1 parent 6643a21 commit e7a51d5

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)