mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 09:08:10 +02:00
mesa: fix html in shortlog_mesa.sh script
Signed-off-by: Brian Paul <brianp@vmware.com>
This commit is contained in:
parent
c12dcfd73c
commit
36fe8a5b7f
1 changed files with 4 additions and 4 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/sh
|
#!/bin/bash
|
||||||
|
|
||||||
# This script is used to generate the list of changes that
|
# This script is used to generate the list of changes that
|
||||||
# appears in the release notes files, with HTML formatting.
|
# appears in the release notes files, with HTML formatting.
|
||||||
|
|
@ -9,15 +9,15 @@ typeset -i in_log=0
|
||||||
git shortlog $* | while read l
|
git shortlog $* | while read l
|
||||||
do
|
do
|
||||||
if [ $in_log -eq 0 ]; then
|
if [ $in_log -eq 0 ]; then
|
||||||
echo '<p>'$l
|
echo '<p>'$l'</p>'
|
||||||
echo '<ul>'
|
echo '<ul>'
|
||||||
in_log=1
|
in_log=1
|
||||||
elif echo "$l" | egrep -q '^$' ; then
|
elif echo "$l" | egrep -q '^$' ; then
|
||||||
echo '</ul></p>'
|
echo '</ul>'
|
||||||
echo
|
echo
|
||||||
in_log=0
|
in_log=0
|
||||||
else
|
else
|
||||||
mesg=$(echo $l | sed 's/ (cherry picked from commit [0-9a-f]\+)//;s/\&/&/g;s/</\</g;s/>/\>/g')
|
mesg=$(echo $l | sed 's/ (cherry picked from commit [0-9a-f]\+)//;s/\&/&/g;s/</\</g;s/>/\>/g')
|
||||||
echo ' <li>'${mesg}'</li>'
|
echo ' <li>'${mesg}'</li>'
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue