Update language for missing extension executable
Co-authored-by: Tyler McGoffin <jtmcg@github.com>
This commit is contained in:
parent
2ec27ff9fe
commit
bb3b64ad06
1 changed files with 1 additions and 1 deletions
|
|
@ -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: expected executable file named \"%s\" in %s, perhaps you need to build it?", cs.WarningIcon(), ErrExtensionExecutableNotFound, name, dir)
|
||||
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)
|
||||
return errMsg
|
||||
}
|
||||
return nil
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue