From: Andreas Boll Date: Mon, 22 Oct 2012 19:18:17 +0000 (+0200) Subject: mesa: use .cherry-ignore in the get-pick-list.sh script X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ca8988673baa65107a1b8f6f59b671725d9e4814;p=mesa.git mesa: use .cherry-ignore in the get-pick-list.sh script NOTE: This is a candidate for the stable branches. Reviewed-by: Ian Romanick --- diff --git a/bin/get-pick-list.sh b/bin/get-pick-list.sh index 72880907b11..a141afe2650 100755 --- a/bin/get-pick-list.sh +++ b/bin/get-pick-list.sh @@ -12,8 +12,8 @@ git log --reverse --pretty=%H -i --grep='^[[:space:]]*NOTE: This is a candidate' while read sha do # Check to see whether the patch is on the ignore list. - if [ -f .git/cherry-ignore ] ; then - if grep -q ^$sha .git/cherry-ignore ; then + if [ -f bin/.cherry-ignore ] ; then + if grep -q ^$sha bin/.cherry-ignore ; then continue fi fi