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)
}