Sign in
edge
/
third_party
/
Masterminds
/
glide
/
74267f268737aba9547b83a27ace8f272c12bbb0
/
.
/
vendor
/
github.com
/
sdboyer
/
vsolver
/
remove_go17.go
blob: cb18bae3f36db5aa358cb43b6c1de2a0c239e0bb [
file
] [
log
] [
blame
]
// +build go1.7
package vsolver
import "os"
// go1.7 and later deal with the file perms issue in os.RemoveAll(), so our
// workaround is no longer necessary.
func removeAll(path string) error {
return os.RemoveAll(path)
}