diff options
author | Andreas Boll <andreas.boll.dev@gmail.com> | 2012-10-20 21:50:30 +0200 |
---|---|---|
committer | Andreas Boll <andreas.boll.dev@gmail.com> | 2012-10-23 19:26:56 +0200 |
commit | 3e3ff4cd736ee881d37cfe4d40e540db503b41a5 (patch) | |
tree | e28fd5ecd2485f3219207b5af4b4758593d5a3ef /bin | |
parent | 135ec3a1db0de50e2bb3c57d4bf76f87ac80320f (diff) |
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>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/get-pick-list.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/get-pick-list.sh b/bin/get-pick-list.sh index 363bac761a..72880907b1 100755 --- a/bin/get-pick-list.sh +++ b/bin/get-pick-list.sh @@ -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. |