Repository: mesos Updated Branches: refs/heads/master 145dc90b1 -> 6ac4b6cdd
Fix apply-review.sh breaking author names for pull requests https://issues.apache.org/jira/browse/MESOS-3691 /cc @davelester This closes: #74 Review: https://github.com/apache/mesos/pull/74 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/6ac4b6cd Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/6ac4b6cd Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/6ac4b6cd Branch: refs/heads/master Commit: 6ac4b6cdd01d83b4b927de7f6a5ecfefb8bc9178 Parents: 145dc90 Author: Rossi <[email protected]> Authored: Fri Oct 9 16:30:56 2015 +0100 Committer: Dave Lester <[email protected]> Committed: Fri Oct 9 16:30:56 2015 +0100 ---------------------------------------------------------------------- support/apply-review.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mesos/blob/6ac4b6cd/support/apply-review.sh ---------------------------------------------------------------------- diff --git a/support/apply-review.sh b/support/apply-review.sh index 0db8b6b..6391451 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}
