pkg/system: make EnsureRemoveAll unix-specific
@@ -1,3 +1,5 @@
+// +build !windows
+
package system // import "github.com/docker/docker/pkg/system"
import (
@@ -0,0 +1,6 @@
+package system
+import "os"
+// EnsureRemoveAll is an alias to os.RemoveAll on Windows
+var EnsureRemoveAll = os.RemoveAll