projects
/
platform
/
upstream
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
72175bd
)
bin/get-fixes-pick-list.sh: fix typo
author
Juan A. Suarez Romero
<jasuarez@igalia.com>
Mon, 3 Apr 2017 16:48:33 +0000
(18:48 +0200)
committer
Juan A. Suarez Romero
<jasuarez@igalia.com>
Tue, 4 Apr 2017 07:05:44 +0000
(09:05 +0200)
Replace "nore" by "more".
Reviewed-by: Emil Velikov <emil.l.velikov@gmail.com>
bin/get-fixes-pick-list.sh
patch
|
blob
|
history
diff --git
a/bin/get-fixes-pick-list.sh
b/bin/get-fixes-pick-list.sh
index
59bcae4
..
75242a2
100755
(executable)
--- 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
n
ore than one Fixes tag
+ echo WARNING: Commit $sha has
m
ore than one Fixes tag
fi
fixes=`git show $sha | grep -i "fixes:" | head -n 1`
# The following sed/cut combination is borrowed from GregKH