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 {
|
if err == errNotExec {
|
||||||
return err
|
return err
|
||||||
} else if err == nil {
|
} else if err == nil {
|
||||||
return execName, nil
|
return nil
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -3,14 +3,12 @@
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"os"
|
"os"
|
||||||
)
|
)
|
||||||
|
|
||||||
func findExecutable(path string) error {
|
func findExecutable(path string) error {
|
||||||
nameExt := filepath.Ext(path)
|
nameExt := filepath.Ext(path)
|
||||||
|
|
||||||
if nameExt == "" {
|
if nameExt == "" {
|
||||||
for _, ext := range filepath.SplitList(os.Getenv("PATHEXT")) {
|
for _, ext := range filepath.SplitList(os.Getenv("PATHEXT")) {
|
||||||
_, err := os.Stat(path + ext)
|
_, err := os.Stat(path + ext)
|
||||||
|
@ -18,10 +16,12 @@ func findExecutable(path string) error {
|
||||||
return nil
|
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