Browse Source

Handle windows deletion when start

Fix #2872
Unknwon 9 years ago
parent
commit
98b58fa050
4 changed files with 4 additions and 5 deletions
  1. 1 1
      README.md
  2. 1 1
      gogs.go
  3. 1 2
      models/repo.go
  4. 1 1
      templates/.VERSION

+ 1 - 1
README.md

@@ -3,7 +3,7 @@ Gogs - Go Git Service [![Build Status](https://travis-ci.org/gogits/gogs.svg?bra
 
 ![](https://github.com/gogits/gogs/blob/master/public/img/gogs-large-resize.png?raw=true)
 
-##### Current version: 0.9.14
+##### Current version: 0.9.15
 
 | Web | UI  | Preview  |
 |:-------------:|:-------:|:-------:|

+ 1 - 1
gogs.go

@@ -17,7 +17,7 @@ import (
 	"github.com/gogits/gogs/modules/setting"
 )
 
-const APP_VER = "0.9.14.0321"
+const APP_VER = "0.9.15.0323"
 
 func init() {
 	runtime.GOMAXPROCS(runtime.NumCPU())

+ 1 - 2
models/repo.go

@@ -129,8 +129,7 @@ func NewRepoContext() {
 		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"))
+	RemoveAllWithNotice("Clean up repository temporary data", filepath.Join(setting.AppDataPath, "tmp"))
 }
 
 // Repository represents a git repository.

+ 1 - 1
templates/.VERSION

@@ -1 +1 @@
-0.9.14.0321
+0.9.15.0323