Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
Sheep26 authored Dec 5, 2024
2 parents c8d542d + 5ea588b commit 4318a1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/utils/file/file.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 file if it does not exist
func IsNotExistCreateFile(src string) error {
if notExist := CheckNotExist(src); notExist {
if err := CreateFile(src); err != nil {
Expand Down

0 comments on commit 4318a1e

Please sign in to comment.