1
0
Fork 0
forked from forgejo/forgejo

Remove util.RemoveAll - should have been removed since go 1.7 (#6299)

This commit is contained in:
zeripath 2019-03-10 21:56:36 +00:00 committed by Lauris BH
parent e836b8869b
commit dbab98c8e0
3 changed files with 2 additions and 31 deletions

View file

@ -6,6 +6,7 @@ package models
import (
"fmt"
"os"
"code.gitea.io/gitea/modules/log"
"code.gitea.io/gitea/modules/util"
@ -60,7 +61,7 @@ func RemoveAllWithNotice(title, path string) {
}
func removeAllWithNotice(e Engine, title, path string) {
if err := util.RemoveAll(path); err != nil {
if err := os.RemoveAll(path); err != nil {
desc := fmt.Sprintf("%s [%s]: %v", title, path, err)
log.Warn(desc)
if err = createNotice(e, NoticeRepository, desc); err != nil {