Merge pull request #45 from abf/rosa-build:pull_requests

add more debug message for pull requests.
This commit is contained in:
warpc 2013-03-21 22:32:18 +04:00
commit 0a29fa4934
1 changed files with 6 additions and 1 deletions

View File

@ -78,12 +78,17 @@ class PullRequest < ActiveRecord::Base
def merge!(who)
return false unless can_merging?
Dir.chdir(path) do
old_commit = to_project.repo.commits(to_ref).first
commit = repo.commits(to_ref).first
system "git config user.name \"#{who.uname}\" && git config user.email \"#{who.email}\""
res = merge
if commit.id != repo.commits(to_ref).first.id
system("export GL_ID=user-#{who.id} && git push origin HEAD")
res2 = %x(export GL_ID=user-#{who.id} && git push origin HEAD)
system("git reset --hard HEAD^") # for diff maybe FIXME
if old_commit.id == to_project.repo.commits(to_ref).first.id
raise "merge result pull_request #{id}: #{res}; #{res2}"
end
set_user_and_time who
merging
else # Try to catch no merge errors