mirror of https://github.com/Hilbis/Hilbish
fix: return correct error in find exec function and stat always
parent
c3f3b5c6a4
commit
bcce4da92c
2
exec.go
2
exec.go
|
@ -172,7 +172,7 @@ func lookpath(file string) error { // custom lookpath function so we know if a c
|
|||
if err == errNotExec {
|
||||
return err
|
||||
} else if err == nil {
|
||||
return execName, nil
|
||||
return nil
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -3,14 +3,12 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"path/filepath"
|
||||
"os"
|
||||
)
|
||||
|
||||
func findExecutable(path string) error {
|
||||
nameExt := filepath.Ext(path)
|
||||
|
||||
if nameExt == "" {
|
||||
for _, ext := range filepath.SplitList(os.Getenv("PATHEXT")) {
|
||||
_, err := os.Stat(path + ext)
|
||||
|
@ -18,10 +16,12 @@ func findExecutable(path string) error {
|
|||
return nil
|
||||
}
|
||||
}
|
||||
} else {
|
||||
_, err := os.Stat(path)
|
||||
return err
|
||||
}
|
||||
|
||||
return errNotExec
|
||||
_, err := os.Stat(path)
|
||||
if err == nil {
|
||||
return errNotExec
|
||||
}
|
||||
|
||||
return os.ErrNotExist
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue