Module: Mesa Branch: 8.0 Commit: 36fe8a5b7f471f67bfbd4de44ca4c8de95fc9a5d URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=36fe8a5b7f471f67bfbd4de44ca4c8de95fc9a5d
Author: Andreas Boll <[email protected]> Date: Thu Jun 14 08:25:42 2012 -0600 mesa: fix html in shortlog_mesa.sh script Signed-off-by: Brian Paul <[email protected]> --- bin/shortlog_mesa.sh | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/shortlog_mesa.sh b/bin/shortlog_mesa.sh index 1e1ef26..b20c52f 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/\&/&/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>' fi done _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
