mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 21:28:11 +09:00 
			
		
		
		
	Remove util.RemoveAll - should have been removed since go 1.7 (#6299)
This commit is contained in:
		| @@ -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 { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user