We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6643a21 commit e7a51d5Copy full SHA for e7a51d5
pkg/plugin/installer/installer.go
@@ -44,7 +44,7 @@ type Installer interface {
44
// Install installs a plugin to $HELM_HOME.
45
func Install(i Installer) error {
46
if _, pathErr := os.Stat(path.Dir(i.Path())); os.IsNotExist(pathErr) {
47
- return errors.New(`plugin home "$HELM_HOME/plugins" does not exists`)
+ return errors.New(`plugin home "$HELM_HOME/plugins" does not exist`)
48
}
49
50
if _, pathErr := os.Stat(i.Path()); !os.IsNotExist(pathErr) {
0 commit comments