2783450a92
Rename the library module and CLI wrapper. Rename daemon/graphdriver to drivers. Catch up vendoring to match modules we've pruned. Signed-off-by: Nalin Dahyabhai <nalin@redhat.com>
18 lines
425 B
Go
18 lines
425 B
Go
// +build windows
|
|
|
|
package idtools
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/containers/storage/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
|
|
}
|