mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-04 09:44:21 +00:00 
			
		
		
		
	fix sqlite lock (#5210)
This commit is contained in:
		@@ -2459,7 +2459,7 @@ func ForkRepository(doer, u *User, oldRepo *Repository, name, desc string) (_ *R
 | 
				
			|||||||
	repoPath := RepoPath(u.Name, repo.Name)
 | 
						repoPath := RepoPath(u.Name, repo.Name)
 | 
				
			||||||
	_, stderr, err := process.GetManager().ExecTimeout(10*time.Minute,
 | 
						_, stderr, err := process.GetManager().ExecTimeout(10*time.Minute,
 | 
				
			||||||
		fmt.Sprintf("ForkRepository(git clone): %s/%s", u.Name, repo.Name),
 | 
							fmt.Sprintf("ForkRepository(git clone): %s/%s", u.Name, repo.Name),
 | 
				
			||||||
		"git", "clone", "--bare", oldRepo.RepoPath(), repoPath)
 | 
							"git", "clone", "--bare", oldRepo.repoPath(sess), repoPath)
 | 
				
			||||||
	if err != nil {
 | 
						if err != nil {
 | 
				
			||||||
		return nil, fmt.Errorf("git clone: %v", stderr)
 | 
							return nil, fmt.Errorf("git clone: %v", stderr)
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user