Vincent Batts
9a67c61b15
This will make the packaages/components individually more consumable Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
18 lines
417 B
Go
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
|
|
}
|