From c1dcf9665c770d25ba8cbe827f4e3e69349d2665 Mon Sep 17 00:00:00 2001
From: Andreas Boll
Date: Thu, 14 Jun 2012 08:25:42 -0600
Subject: [PATCH] mesa: fix html in shortlog_mesa.sh script
Signed-off-by: Brian Paul
---
bin/shortlog_mesa.sh | 8 ++++----
1 file 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 ''$l
+ echo '
'$l'
'
echo ''
in_log=1
elif echo "$l" | egrep -q '^$' ; then
- echo '
'
+ echo ''
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 ' '${mesg}''
fi
done
--
2.30.2