Sign in
cos
/
third_party
/
docker
/
refs/heads/release-R133
/
.
/
internal
/
containerfs
/
rm_windows.go
blob: 98ceba628ac6e569dd3d9b09994ada44ed1137d1 [
file
] [
edit
]
package containerfs
import "os"
// EnsureRemoveAll is an alias to [os.RemoveAll] on Windows.
func EnsureRemoveAll(path string) error {
return os.RemoveAll(path)
}