report error when migration auth failed

This commit is contained in:
Unknwon 2015-07-28 21:24:24 +08:00
parent ba47306a69
commit f83519b452
3 changed files with 4 additions and 2 deletions

View file

@ -373,9 +373,9 @@ func MigrateRepository(u *User, name, desc string, private, mirror bool, url str
// FIXME: this command could for both migrate and mirror
_, stderr, err := process.ExecTimeout(10*time.Minute,
fmt.Sprintf("MigrateRepository: %s", repoPath),
"git", "clone", "--mirror", "--bare", url, repoPath)
"git", "clone", "--mirror", "--bare", "--quiet", url, repoPath)
if err != nil {
return repo, fmt.Errorf("git clone --mirror --bare: %v", stderr)
return repo, fmt.Errorf("git clone --mirror --bare --quiet: %v", stderr)
} else if err = createUpdateHook(repoPath); err != nil {
return repo, fmt.Errorf("create update hook: %v", err)
}