Merge pull request #4731
c53b1ec
Fix github-merge with git version 2.1.0 (Gavin Andresen)
This commit is contained in:
commit
2fb886bffb
@ -49,11 +49,11 @@ fi
|
|||||||
# Initialize source branches.
|
# Initialize source branches.
|
||||||
git checkout -q "$BRANCH"
|
git checkout -q "$BRANCH"
|
||||||
if git fetch -q "$HOST":"$REPO" "+refs/pull/$PULL/*:refs/heads/pull/$PULL/*"; then
|
if git fetch -q "$HOST":"$REPO" "+refs/pull/$PULL/*:refs/heads/pull/$PULL/*"; then
|
||||||
if ! git log -1q "refs/heads/pull/$PULL/head" >/dev/null 2>&1; then
|
if ! git log -q -1 "refs/heads/pull/$PULL/head" >/dev/null 2>&1; then
|
||||||
echo "ERROR: Cannot find head of pull request #$PULL on $HOST:$REPO." >&2
|
echo "ERROR: Cannot find head of pull request #$PULL on $HOST:$REPO." >&2
|
||||||
exit 3
|
exit 3
|
||||||
fi
|
fi
|
||||||
if ! git log -1q "refs/heads/pull/$PULL/merge" >/dev/null 2>&1; then
|
if ! git log -q -1 "refs/heads/pull/$PULL/merge" >/dev/null 2>&1; then
|
||||||
echo "ERROR: Cannot find merge of pull request #$PULL on $HOST:$REPO." >&2
|
echo "ERROR: Cannot find merge of pull request #$PULL on $HOST:$REPO." >&2
|
||||||
exit 3
|
exit 3
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user