From: Juan A. Suarez Romero Date: Mon, 3 Apr 2017 16:48:33 +0000 (+0200) Subject: bin/get-fixes-pick-list.sh: fix typo X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1bcdf74cdddf713c7067b700a2c6b5c19823dbe7;p=mesa.git bin/get-fixes-pick-list.sh: fix typo Replace "nore" by "more". Reviewed-by: Emil Velikov --- diff --git a/bin/get-fixes-pick-list.sh b/bin/get-fixes-pick-list.sh index 59bcae4f2dd..75242a22829 100755 --- a/bin/get-fixes-pick-list.sh +++ b/bin/get-fixes-pick-list.sh @@ -27,7 +27,7 @@ do # For each one try to extract the tag fixes_count=`git show $sha | grep -i "fixes:" | wc -l` if [ "x$fixes_count" != x1 ] ; then - echo WARNING: Commit $sha has nore than one Fixes tag + echo WARNING: Commit $sha has more than one Fixes tag fi fixes=`git show $sha | grep -i "fixes:" | head -n 1` # The following sed/cut combination is borrowed from GregKH