diff options
author | Ian Romanick <ian.d.romanick@intel.com> | 2013-03-05 14:51:26 -0800 |
---|---|---|
committer | Ian Romanick <ian.d.romanick@intel.com> | 2013-03-05 14:54:11 -0800 |
commit | 674f9239b95847e84d036ec084edc6c780bcf604 (patch) | |
tree | a6d87dd7bff3fbf023c09e643756615f2f9d167d /bin | |
parent | 65afa11dc632ae83c58781201f1c8c75a1b89eb0 (diff) |
mesa: Modify candidate search string
Several commits on master for the 9.1 branch had "NOTE" messages in a
slightly different format.
NOTE: This is a candidate for stable branches
Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/get-pick-list.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/get-pick-list.sh b/bin/get-pick-list.sh index a141afe265..d3ac511c14 100755 --- a/bin/get-pick-list.sh +++ b/bin/get-pick-list.sh @@ -8,7 +8,7 @@ git log --reverse --grep="cherry picked from commit" origin/master..HEAD |\ sed -e 's/^[[:space:]]*(cherry picked from commit[[:space:]]*//' -e 's/)//' > already_picked # Grep for commits that were marked as a candidate for the stable tree. -git log --reverse --pretty=%H -i --grep='^[[:space:]]*NOTE: This is a candidate' HEAD..origin/master |\ +git log --reverse --pretty=%H -i --grep='^[[:space:]]*NOTE: .*[Cc]andidate' HEAD..origin/master |\ while read sha do # Check to see whether the patch is on the ignore list. |