generate-cmdlist: style cleanups.
Instead of giving multiple commands concatenated with semicolon to sed, write them on separate lines. Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
parent
ad52e7708d
commit
fd662dd500
@ -41,8 +41,12 @@ whatchanged
|
||||
EOF
|
||||
while read cmd
|
||||
do
|
||||
sed -n "/NAME/,/git-$cmd/H;
|
||||
\$ {x; s/.*git-$cmd - \\(.*\\)/ {\"$cmd\", \"\1\"},/; p;}" \
|
||||
"Documentation/git-$cmd.txt"
|
||||
sed -n '
|
||||
/NAME/,/git-'"$cmd"'/H
|
||||
${
|
||||
x
|
||||
s/.*git-'"$cmd"' - \(.*\)/ {"'"$cmd"'", "\1"},/
|
||||
p
|
||||
}' "Documentation/git-$cmd.txt"
|
||||
done
|
||||
echo "};"
|
||||
|
Loading…
Reference in New Issue
Block a user