kubelet: Use MkdirAll instead of Mkdir

This commit is contained in:
Lucas Käldström
2016-05-22 00:23:18 +03:00
parent 45514f729e
commit 2022c44409
5 changed files with 10 additions and 10 deletions

View File

@@ -41,7 +41,7 @@ func NewFakeOS() *FakeOS {
}
// Mkdir is a fake call that just returns nil.
func (FakeOS) Mkdir(path string, perm os.FileMode) error {
func (FakeOS) MkdirAll(path string, perm os.FileMode) error {
return nil
}