summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorJuan A. Suarez Romero <jasuarez@igalia.com>2017-04-03 18:48:33 +0200
committerJuan A. Suarez Romero <jasuarez@igalia.com>2017-04-04 09:05:44 +0200
commit1bcdf74cdddf713c7067b700a2c6b5c19823dbe7 (patch)
treef47c8cbf4a2bd5dc7ca6bd29a6ac944d2399ed82 /bin
parent72175bd2a590a6d8109eedc5e60ce0ceb43bedb1 (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-xbin/get-fixes-pick-list.sh2
1 files changed, 1 insertions, 1 deletions
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