DefaultBranch needs to be prefixed by BranchPrefix (#9356)
This commit is contained in:
		
							parent
							
								
									484e3dc5a9
								
							
						
					
					
						commit
						2904abdc22
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -158,7 +158,7 @@ type fileUpdate struct { | |||
| } | ||||
| 
 | ||||
| func getDefaultBranchSha(repo *models.Repository) (string, error) { | ||||
| 	stdout, err := git.NewCommand("show-ref", "-s", repo.DefaultBranch).RunInDir(repo.RepoPath()) | ||||
| 	stdout, err := git.NewCommand("show-ref", "-s", git.BranchPrefix+repo.DefaultBranch).RunInDir(repo.RepoPath()) | ||||
| 	if err != nil { | ||||
| 		return "", err | ||||
| 	} | ||||
|  |  | |||
		Loading…
	
		Reference in a new issue