build: drop support for go1.8
This commit is contained in:
parent
613a9bb86b
commit
16d8014cbb
36 changed files with 40 additions and 202 deletions
|
@ -24,11 +24,11 @@ const (
|
|||
|
||||
// Errors which have exact counterparts in os
|
||||
var (
|
||||
ENOENT = os.ErrNotExist
|
||||
EEXIST = os.ErrExist
|
||||
EPERM = os.ErrPermission
|
||||
EINVAL = os.ErrInvalid
|
||||
// ECLOSED see errors_{old,new}.go
|
||||
ENOENT = os.ErrNotExist
|
||||
EEXIST = os.ErrExist
|
||||
EPERM = os.ErrPermission
|
||||
EINVAL = os.ErrInvalid
|
||||
ECLOSED = os.ErrClosed
|
||||
)
|
||||
|
||||
var errorNames = []string{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue