From 0bd1225dc8243f14e49177fe408be05f1aca2829 Mon Sep 17 00:00:00 2001 From: Jonathon Rossi Date: Sat, 10 Oct 2015 01:27:00 +1000 Subject: [PATCH] Fix apply-review.sh breaking author names for pull requests MESOS-3691 --- support/apply-review.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/apply-review.sh b/support/apply-review.sh index 0db8b6be02d..6391451542e 100755 --- a/support/apply-review.sh +++ b/support/apply-review.sh @@ -93,7 +93,7 @@ elif [[ "${REVIEW_LOCATION}" == "github" ]]; then SUMMARY=$(${JSONURL} ${API_URL} title) DESCRIPTION=$(${JSONURL} ${API_URL} body) - AUTHOR=$(head -2 ${REVIEW}.patch | grep "From: " | cut -d ' ' -f3-) + AUTHOR=$(head -2 ${REVIEW}.patch | grep "From: " | cut -d ' ' -f2-) REVIEW_URL="${GITHUB_URL}/${REVIEW}" REVIEW_DETAILS=$(cat <<__EOF__ This closes: #${REVIEW}