generate-cmdlist.sh: avoid selecting synopsis at wrong place
In "common" man pages there is luckily no "NAME" anywhere except at beginning of documents. If there is another "NAME", sed could mis-select it and lead to common-cmds.h corruption. So better nail it at beginning of line, which would reduce corruption chance. Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
539eec48f0
commit
16d258332e
@ -14,7 +14,7 @@ sort |
|
|||||||
while read cmd
|
while read cmd
|
||||||
do
|
do
|
||||||
sed -n '
|
sed -n '
|
||||||
/NAME/,/git-'"$cmd"'/H
|
/^NAME/,/git-'"$cmd"'/H
|
||||||
${
|
${
|
||||||
x
|
x
|
||||||
s/.*git-'"$cmd"' - \(.*\)/ {"'"$cmd"'", "\1"},/
|
s/.*git-'"$cmd"' - \(.*\)/ {"'"$cmd"'", "\1"},/
|
||||||
|
Loading…
Reference in New Issue
Block a user