Skip to content

Commit ad52e77

Browse files
spearceJunio C Hamano
authored andcommitted
Add missing semicolon to sed command.
generate-cmdlist.sh is giving errors messages from sed on Mac OS 10.4 due to a missing semicolon. Signed-off-by: Junio C Hamano <junkio@cox.net>
1 parent 67686d9 commit ad52e77

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

generate-cmdlist.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ EOF
4242
while read cmd
4343
do
4444
sed -n "/NAME/,/git-$cmd/H;
45-
\$ {x; s/.*git-$cmd - \\(.*\\)/ {\"$cmd\", \"\1\"},/; p}" \
45+
\$ {x; s/.*git-$cmd - \\(.*\\)/ {\"$cmd\", \"\1\"},/; p;}" \
4646
"Documentation/git-$cmd.txt"
4747
done
4848
echo "};"

0 commit comments

Comments
 (0)