mesa: fix indentation in get-pick-list.sh script

NOTE: This is a candidate for the stable branches.

Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
This commit is contained in:
Andreas Boll 2012-10-20 21:50:30 +02:00
parent 135ec3a1db
commit 3e3ff4cd73
1 changed files with 4 additions and 4 deletions

View File

@ -11,11 +11,11 @@ git log --reverse --grep="cherry picked from commit" origin/master..HEAD |\
git log --reverse --pretty=%H -i --grep='^[[:space:]]*NOTE: This is a candidate' HEAD..origin/master |\
while read sha
do
# Check to see whether the patch is on the ignore list.
# 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
continue
fi
if grep -q ^$sha .git/cherry-ignore ; then
continue
fi
fi
# Check to see if it has already been picked over.