mirror of
https://github.com/opencontainers/runc.git
synced 2026-07-11 06:03:57 +08:00
bb5aa11622
Bumps [github.com/moby/sys/user](https://github.com/moby/sys) from 0.3.0 to 0.4.0. - [Release notes](https://github.com/moby/sys/releases) - [Commits](https://github.com/moby/sys/compare/user/v0.3.0...user/v0.4.0) --- updated-dependencies: - dependency-name: github.com/moby/sys/user dependency-version: 0.4.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
14 lines
358 B
Go
14 lines
358 B
Go
package user
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
// This is currently a wrapper around [os.MkdirAll] since currently
|
|
// permissions aren't set through this path, the identity isn't utilized.
|
|
// Ownership is handled elsewhere, but in the future could be support here
|
|
// too.
|
|
func mkdirAs(path string, _ os.FileMode, _, _ int, _, _ bool) error {
|
|
return os.MkdirAll(path, 0)
|
|
}
|