summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--gogs.go2
-rw-r--r--models/repo.go4
-rw-r--r--models/repo_mirror.go1
-rw-r--r--routers/install.go6
-rw-r--r--templates/.VERSION2
5 files changed, 6 insertions, 9 deletions
diff --git a/gogs.go b/gogs.go
index 093f0be0e3..3e80523aa2 100644
--- a/gogs.go
+++ b/gogs.go
@@ -17,7 +17,7 @@ import (
"github.com/gogits/gogs/modules/setting"
)
-const APP_VER = "0.9.98.0901"
+const APP_VER = "0.9.98.0902"
func init() {
runtime.GOMAXPROCS(runtime.NumCPU())
diff --git a/models/repo.go b/models/repo.go
index 932a0e9f2f..010c9fad60 100644
--- a/models/repo.go
+++ b/models/repo.go
@@ -613,10 +613,6 @@ func MigrateRepository(u *User, opts MigrateRepoOptions) (*Repository, error) {
return nil, err
}
- // Clone to temprory path and do the init commit.
- tmpDir := filepath.Join(os.TempDir(), fmt.Sprintf("%d", time.Now().Nanosecond()))
- os.MkdirAll(tmpDir, os.ModePerm)
-
repoPath := RepoPath(u.Name, opts.Name)
wikiPath := WikiPath(u.Name, opts.Name)
diff --git a/models/repo_mirror.go b/models/repo_mirror.go
index 7274258ea1..8835c40d2f 100644
--- a/models/repo_mirror.go
+++ b/models/repo_mirror.go
@@ -38,6 +38,7 @@ type Mirror struct {
}
func (m *Mirror) BeforeInsert() {
+ m.UpdatedUnix = time.Now().Unix()
m.NextUpdateUnix = m.NextUpdate.Unix()
}
diff --git a/routers/install.go b/routers/install.go
index 00171faa5f..651f2f2f5d 100644
--- a/routers/install.go
+++ b/routers/install.go
@@ -65,14 +65,14 @@ func GlobalInit() {
if setting.InstallLock {
highlight.NewContext()
markdown.BuildSanitizer()
-
- models.LoadRepoConfig()
- models.NewRepoContext()
if err := models.NewEngine(); err != nil {
log.Fatal(4, "Fail to initialize ORM engine: %v", err)
}
models.HasEngine = true
+ models.LoadRepoConfig()
+ models.NewRepoContext()
+
// Booting long running goroutines.
cron.NewContext()
models.InitSyncMirrors()
diff --git a/templates/.VERSION b/templates/.VERSION
index 37613d207b..f49ad0de91 100644
--- a/templates/.VERSION
+++ b/templates/.VERSION
@@ -1 +1 @@
-0.9.98.0901 \ No newline at end of file
+0.9.98.0902 \ No newline at end of file