diff --git a/pkg/cmd/extension/manager.go b/pkg/cmd/extension/manager.go index cc5d5ca64..f8d9f1897 100644 --- a/pkg/cmd/extension/manager.go +++ b/pkg/cmd/extension/manager.go @@ -209,7 +209,7 @@ func (m *Manager) InstallLocal(dir string) error { // it does indicate that the user will not be able to run the extension until // the executable file is built or created manually somehow. if _, err := os.Stat(filepath.Join(dir, name)); err != nil { - errMsg := fmt.Errorf("%v %w: executable file named \"%s\" in %s is required for the extension to run after install. Perhaps you need to build it?", cs.WarningIcon(), ErrExtensionExecutableNotFound, name, dir) + errMsg := fmt.Errorf("%v %w: executable file named \"%s\" in %s is required to run the extension after install. Perhaps you need to build it?", cs.WarningIcon(), ErrExtensionExecutableNotFound, name, dir) return errMsg } return nil