mirror of
https://github.com/crazy-max/diun.git
synced 2025-12-25 06:49:28 +01:00
Bumps [github.com/moby/buildkit](https://github.com/moby/buildkit) from 0.17.3 to 0.23.2. - [Release notes](https://github.com/moby/buildkit/releases) - [Commits](https://github.com/moby/buildkit/compare/v0.17.3...v0.23.2) --- updated-dependencies: - dependency-name: github.com/moby/buildkit dependency-version: 0.23.2 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)
|
|
}
|