mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-22 19:31:44 +00:00
Merge pull request #57082 from tianshapjq/small-nit-container/os.go
Automatic merge from submit-queue (batch tested with PRs 57082, 64325, 64016, 64443, 64403). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. small nit in the annotations of pkg/kubelet/container/os.go **What this PR does / why we need it**: just a small nit in the annotations of container/os.go, but, it looks quite uncomfortable cause others all get right.
This commit is contained in:
commit
3e127ccbef
@ -43,7 +43,7 @@ type OSInterface interface {
|
|||||||
// RealOS is used to dispatch the real system level operations.
|
// RealOS is used to dispatch the real system level operations.
|
||||||
type RealOS struct{}
|
type RealOS struct{}
|
||||||
|
|
||||||
// MkDir will will call os.Mkdir to create a directory.
|
// MkdirAll will call os.MkdirAll to create a directory.
|
||||||
func (RealOS) MkdirAll(path string, perm os.FileMode) error {
|
func (RealOS) MkdirAll(path string, perm os.FileMode) error {
|
||||||
return os.MkdirAll(path, perm)
|
return os.MkdirAll(path, perm)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user