After a recent Bugzilla update the word is no longer in the title. Thus the script ended up producing bogus HTML. Cc: "11.2 12.0" <mesa-stable@lists.freedesktop.org> Signed-off-by: Emil Velikov <emil.velikov@collabora.com>tags/13.0-branchpoint
@@ -40,7 +40,7 @@ else | |||
for i in $urls | |||
do | |||
id=$(echo $i | cut -d'=' -f2) | |||
summary=$(wget --quiet -O - $i | grep -e '<title>.*</title>' | sed -e 's/ *<title>Bug [0-9]\+ – \(.*\)<\/title>/\1/') | |||
summary=$(wget --quiet -O - $i | grep -e '<title>.*</title>' | sed -e 's/ *<title>[0-9]\+ – \(.*\)<\/title>/\1/') | |||
echo "<li><a href=\"$i\">Bug $id</a> - $summary</li>" | |||
echo "" | |||
done |