diff --git a/pkg/utils/file/file.go b/pkg/utils/file/file.go index 6a10144e3..72c2da795 100644 --- a/pkg/utils/file/file.go +++ b/pkg/utils/file/file.go @@ -179,7 +179,7 @@ func CreateFileAndWriteContent(path string, content string) error { return nil } -// IsNotExistMkDir create a directory if it does not exist +// IsNotExistCreateFile create a fi if it does not exist func IsNotExistCreateFile(src string) error { if notExist := CheckNotExist(src); notExist { if err := CreateFile(src); err != nil {