Browse Source

Fix #258

tags/v1.2.0-rc1
Unknwon 11 years ago
parent
commit
17d2675dd2
1 changed files with 1 additions and 5 deletions
  1. +1
    -5
      models/repo.go

+ 1
- 5
models/repo.go View File

@@ -237,8 +237,6 @@ func MirrorRepository(repoId int64, userName, repoName, repoPath, url string) er
}); err != nil {
return err
}

// return git.UnpackRefs(repoPath)
return nil
}

@@ -255,9 +253,7 @@ func MirrorUpdate() {
repoPath, fmt.Sprintf("MirrorUpdate: %s", repoPath),
"git", "remote", "update"); err != nil {
return errors.New("git remote update: " + stderr)
} // else if err = git.UnpackRefs(repoPath); err != nil {
// return errors.New("UnpackRefs: " + err.Error())
// }
}

m.NextUpdate = time.Now().Add(time.Duration(m.Interval) * time.Hour)
return UpdateMirror(m)


Loading…
Cancel
Save