github.com/codemac/docker@v1.2.1-0.20150518222241-6a18412d5b9c/pkg/system/filesys.go (about) 1 // +build !windows 2 3 package system 4 5 import ( 6 "os" 7 ) 8 9 func MkdirAll(path string, perm os.FileMode) error { 10 return os.MkdirAll(path, perm) 11 }