diff options
author | Juan A. Suarez Romero <jasuarez@igalia.com> | 2017-04-03 18:48:33 +0200 |
---|---|---|
committer | Juan A. Suarez Romero <jasuarez@igalia.com> | 2017-04-04 09:05:44 +0200 |
commit | 1bcdf74cdddf713c7067b700a2c6b5c19823dbe7 (patch) | |
tree | f47c8cbf4a2bd5dc7ca6bd29a6ac944d2399ed82 /bin | |
parent | 72175bd2a590a6d8109eedc5e60ce0ceb43bedb1 (diff) |
bin/get-fixes-pick-list.sh: fix typo
Replace "nore" by "more".
Reviewed-by: Emil Velikov <emil.l.velikov@gmail.com>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/get-fixes-pick-list.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/get-fixes-pick-list.sh b/bin/get-fixes-pick-list.sh index 59bcae4f2d..75242a2282 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 |