Sign in
edge
/
third_party
/
Masterminds
/
glide
/
8117b4ab0960390c6e2c1389aac218bb675c9e62
/
.
/
vendor
/
github.com
/
sdboyer
/
gps
/
remove_go17.go
blob: 59c19a6849494c8320c845c20ebc2fe8c80d283c [
file
] [
log
] [
blame
]
// +build go1.7
package gps
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)
}