mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 16:40:24 +08:00 
			
		
		
		
	fix #2205
This commit is contained in:
		@@ -3,7 +3,7 @@ Gogs - Go Git Service [
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
##### Current version: 0.8.5
 | 
					##### Current version: 0.8.6
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| Web | UI  | Preview  |
 | 
					| Web | UI  | Preview  |
 | 
				
			||||||
|:-------------:|:-------:|:-------:|
 | 
					|:-------------:|:-------:|:-------:|
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -2,6 +2,7 @@
 | 
				
			|||||||
# Entries are in alphabetical order.
 | 
					# Entries are in alphabetical order.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
Akihiro YAGASAKI <yaggytter AT momiage DOT com>
 | 
					Akihiro YAGASAKI <yaggytter AT momiage DOT com>
 | 
				
			||||||
 | 
					Aleksejs Grocevs <aleksejs AT grocevs DOT pro>
 | 
				
			||||||
Alexander Steinhöfer <kontakt AT lx-s DOT de>
 | 
					Alexander Steinhöfer <kontakt AT lx-s DOT de>
 | 
				
			||||||
Alexandre Magno <alexandre DOT mbm AT gmail DOT com>
 | 
					Alexandre Magno <alexandre DOT mbm AT gmail DOT com>
 | 
				
			||||||
Andrey Nering <andrey AT nering DOT com DOT br>
 | 
					Andrey Nering <andrey AT nering DOT com DOT br>
 | 
				
			||||||
@@ -10,7 +11,9 @@ Barış Arda Yılmaz <ardayilmazgamer AT gmail DOT com>
 | 
				
			|||||||
Christoph Kisfeld <christoph DOT kisfeld AT gmail DOT com>
 | 
					Christoph Kisfeld <christoph DOT kisfeld AT gmail DOT com>
 | 
				
			||||||
Cysioland
 | 
					Cysioland
 | 
				
			||||||
Daniel Speichert <daniel AT speichert DOT pl>
 | 
					Daniel Speichert <daniel AT speichert DOT pl>
 | 
				
			||||||
 | 
					David Yzaguirre <dvdyzag AT gmail DOT com>
 | 
				
			||||||
Dmitriy Nogay <me AT catwhocode DOT ga>
 | 
					Dmitriy Nogay <me AT catwhocode DOT ga>
 | 
				
			||||||
 | 
					Ezequiel Gonzalez Rial <gonrial AT gmail DOT com>
 | 
				
			||||||
Gregor Santner <gdev AT live DOT de>
 | 
					Gregor Santner <gdev AT live DOT de>
 | 
				
			||||||
Hamid Feizabadi <hamidfzm AT gmail DOT com>
 | 
					Hamid Feizabadi <hamidfzm AT gmail DOT com>
 | 
				
			||||||
Huimin Wang <wanghm2009 AT hotmail DOT co DOT jp>
 | 
					Huimin Wang <wanghm2009 AT hotmail DOT co DOT jp>
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										2
									
								
								gogs.go
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								gogs.go
									
									
									
									
									
								
							@@ -18,7 +18,7 @@ import (
 | 
				
			|||||||
	"github.com/gogits/gogs/modules/setting"
 | 
						"github.com/gogits/gogs/modules/setting"
 | 
				
			||||||
)
 | 
					)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const APP_VER = "0.8.5.1214"
 | 
					const APP_VER = "0.8.6.1215"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
func init() {
 | 
					func init() {
 | 
				
			||||||
	runtime.GOMAXPROCS(runtime.NumCPU())
 | 
						runtime.GOMAXPROCS(runtime.NumCPU())
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -129,6 +129,8 @@ func NewRepoContext() {
 | 
				
			|||||||
		log.Fatal(4, "Fail to execute 'git config --global core.quotepath false': %s", stderr)
 | 
							log.Fatal(4, "Fail to execute 'git config --global core.quotepath false': %s", stderr)
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						// Clean up temporary data.
 | 
				
			||||||
 | 
						os.RemoveAll(filepath.Join(setting.AppDataPath, "tmp"))
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Repository represents a git repository.
 | 
					// Repository represents a git repository.
 | 
				
			||||||
@@ -1301,7 +1303,8 @@ func DeleteRepository(uid, repoID int64) error {
 | 
				
			|||||||
		}
 | 
							}
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	wikiPath := repo.WikiPath()
 | 
						wikiPaths := []string{repo.WikiPath(), repo.LocalWikiPath()}
 | 
				
			||||||
 | 
						for _, wikiPath := range wikiPaths {
 | 
				
			||||||
		if err = os.RemoveAll(wikiPath); err != nil {
 | 
							if err = os.RemoveAll(wikiPath); err != nil {
 | 
				
			||||||
			desc := fmt.Sprintf("delete repository wiki [%s]: %v", wikiPath, err)
 | 
								desc := fmt.Sprintf("delete repository wiki [%s]: %v", wikiPath, err)
 | 
				
			||||||
			log.Warn(desc)
 | 
								log.Warn(desc)
 | 
				
			||||||
@@ -1309,6 +1312,7 @@ func DeleteRepository(uid, repoID int64) error {
 | 
				
			|||||||
				log.Error(4, "CreateRepositoryNotice: %v", err)
 | 
									log.Error(4, "CreateRepositoryNotice: %v", err)
 | 
				
			||||||
			}
 | 
								}
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	// Remove attachment files.
 | 
						// Remove attachment files.
 | 
				
			||||||
	for i := range attachmentPaths {
 | 
						for i := range attachmentPaths {
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1 +1 @@
 | 
				
			|||||||
0.8.5.1214
 | 
					0.8.6.1215
 | 
				
			||||||
		Reference in New Issue
	
	Block a user