Skip to content

Commit

Permalink
Merge pull request #9 from Chikage0o0/update
Browse files Browse the repository at this point in the history
fix: no panic in removeEmptyFolder
  • Loading branch information
nothub authored Sep 20, 2022
2 parents ad43fc3 + 6936610 commit 4827537
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util/file.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ func RemoveEmptyDir(dir string) {
return err
})
if err != nil {
panic(err)
fmt.Println(err)
}

fileNamesAll := strings.Join(fileNames, "")
Expand Down

0 comments on commit 4827537

Please sign in to comment.