mesa: fix indentation in get-pick-list.sh script
authorAndreas Boll <andreas.boll.dev@gmail.com>
Sat, 20 Oct 2012 19:50:30 +0000 (21:50 +0200)
committerAndreas Boll <andreas.boll.dev@gmail.com>
Tue, 23 Oct 2012 17:26:56 +0000 (19:26 +0200)
NOTE: This is a candidate for the stable branches.

Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
bin/get-pick-list.sh

index 363bac761ae7c8239de3c08d315d6b3b0f313250..72880907b1157b7540646b4501442c37cd20d4b8 100755 (executable)
@@ -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.