mesa: fix html in shortlog_mesa.sh script
authorAndreas Boll <andreas.boll.dev@gmail.com>
Thu, 14 Jun 2012 14:25:42 +0000 (08:25 -0600)
committerBrian Paul <brianp@vmware.com>
Thu, 14 Jun 2012 14:25:42 +0000 (08:25 -0600)
Signed-off-by: Brian Paul <brianp@vmware.com>
bin/shortlog_mesa.sh

index 1e1ef26e2661def8b3c8afba2c43e219eb840044..b20c52fdd45ee05619e5d1b7419bca32038ca44d 100755 (executable)
@@ -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