summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Boll <andreas.boll.dev@gmail.com>2012-06-14 08:25:42 -0600
committerKenneth Graunke <kenneth@whitecape.org>2012-08-16 23:49:52 -0700
commit36fe8a5b7f471f67bfbd4de44ca4c8de95fc9a5d (patch)
treea0ebf5d0bc986bf83511f53dbbb8c700af265dd9
parentc12dcfd73c8e85f63f0dd7ca177d050276e492ff (diff)
mesa: fix html in shortlog_mesa.sh script
Signed-off-by: Brian Paul <brianp@vmware.com>
-rwxr-xr-xbin/shortlog_mesa.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/shortlog_mesa.sh b/bin/shortlog_mesa.sh
index 1e1ef26e266..b20c52fdd45 100755
--- a/bin/shortlog_mesa.sh
+++ b/bin/shortlog_mesa.sh
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
# This script is used to generate the list of changes that
# appears in the release notes files, with HTML formatting.
@@ -9,15 +9,15 @@ typeset -i in_log=0
git shortlog $* | while read l
do
if [ $in_log -eq 0 ]; then
- echo '<p>'$l
+ echo '<p>'$l'</p>'
echo '<ul>'
in_log=1
elif echo "$l" | egrep -q '^$' ; then
- echo '</ul></p>'
+ echo '</ul>'
echo
in_log=0
else
- mesg=$(echo $l | sed 's/ (cherry picked from commit [0-9a-f]\+)//;s/\&/&amp;/g;s/</\&lt/g;s/>/\&gt;/g')
+ mesg=$(echo $l | sed 's/ (cherry picked from commit [0-9a-f]\+)//;s/\&/&amp;/g;s/</\&lt;/g;s/>/\&gt;/g')
echo ' <li>'${mesg}'</li>'
fi
done