aboutsummaryrefslogtreecommitdiff
path: root/src/os/exec/lp_unix.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/os/exec/lp_unix.go')
-rw-r--r--src/os/exec/lp_unix.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/os/exec/lp_unix.go b/src/os/exec/lp_unix.go
index 93793e0eee..66c1df76fb 100644
--- a/src/os/exec/lp_unix.go
+++ b/src/os/exec/lp_unix.go
@@ -8,6 +8,7 @@ package exec
import (
"errors"
+ "io/fs"
"os"
"path/filepath"
"strings"
@@ -24,7 +25,7 @@ func findExecutable(file string) error {
if m := d.Mode(); !m.IsDir() && m&0111 != 0 {
return nil
}
- return os.ErrPermission
+ return fs.ErrPermission
}
// LookPath searches for an executable named file in the