This website requires JavaScript.
Explore
Help
Sign In
mirror
/
afero
mirror of
https://github.com/spf13/afero.git
Watch
1
Star
0
Fork
You've already forked afero
1
Code
Issues
Packages
Projects
Releases
Wiki
Activity
de012fc5f2
afero
/
go.mod
4 lines
64 B
Modula-2
Raw
Normal View
History
Unescape
Escape
Add go.mod
2018-09-07 12:23:51 +03:00
module
github
.
com
/
spf13
/
afero
Return os.ErrExist from CopyOnWriteFs.Mkdir/MkdirAll Before this commit, `CopyOnWriteFs` would return `syscall.EEXIST` in `Mkdir` and `MkdirAll` when a directory already exists. The main problem with this is that `os.IsExist` returns `false` for that error on Windows. These methods now return `os.ErrExist`, which is in line with how the other file systems behave. Fixes #189
2018-12-16 13:57:17 +03:00
require
golang
.
org
/
x
/
text
v0
.
3.0