You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
bep
changed the title
CopyOnWriteFs.Mkdir/MkdirAll should return os. ErrExist and not syscall.EEXIST
CopyOnWriteFs.Mkdir/MkdirAll should return os.ErrExist and not syscall.EEXIST
Dec 15, 2018
The main reason being that
os.IsExist
does not returntrue
forsyscall.EEXIST
for all platforms, see:https://github.com/golang/go/blob/master/src/os/error_windows.go#L9
The text was updated successfully, but these errors were encountered: