mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-05-21 11:17:44 +08:00
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)
|
|
}
|