Sign in
edge
/
third_party
/
Masterminds
/
glide
/
7870897a46c76c23fd3bcb4bb4db7e93e584cb84
/
.
/
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)
}