pkg/idtools/idtools_windows.go
Vincent Batts 9a67c61b15
*: import paths and a README
This will make the packaages/components individually more consumable

Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
2017-04-18 14:58:56 -04:00

18 lines
417 B
Go

// +build windows
package idtools
import (
"os"
"github.com/containers/pkg/system"
)
// Platforms such as Windows do not support the UID/GID concept. So make this
// just a wrapper around system.MkdirAll.
func mkdirAs(path string, mode os.FileMode, ownerUID, ownerGID int, mkAll, chownExisting bool) error {
if err := system.MkdirAll(path, mode); err != nil && !os.IsExist(err) {
return err
}
return nil
}