From: Andreas Boll Date: Thu, 14 Jun 2012 14:25:42 +0000 (-0600) Subject: mesa: fix html in shortlog_mesa.sh script X-Git-Tag: accepted/2.0alpha-wayland/20121114.171706~1605 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c1dcf9665c770d25ba8cbe827f4e3e69349d2665;p=profile%2Fivi%2Fmesa.git mesa: fix html in shortlog_mesa.sh script Signed-off-by: Brian Paul --- 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 '

'$l + echo '

'$l'

' echo '

' + echo '' echo in_log=0 else - mesg=$(echo $l | sed 's/ (cherry picked from commit [0-9a-f]\+)//;s/\&/&/g;s//\>/g') + mesg=$(echo $l | sed 's/ (cherry picked from commit [0-9a-f]\+)//;s/\&/&/g;s//\>/g') echo '
  • '${mesg}'
  • ' fi done