Fix cat name

This commit is contained in:
craig
2012-02-11 20:08:19 +00:00
committed by craig
parent fa88a0e07a
commit 200c7a15da
2 changed files with 2 additions and 1 deletions

View File

@@ -39,6 +39,7 @@
30. Incremental update of folder page items.
31. Use current style for position slider.
32. Fix some toolbutton clipping with some styles.
33. Fix amarok import script.
0.3.0
-----

View File

@@ -52,7 +52,7 @@ for line in `cat "$1/main.js" | grep Station` ; do
if [ "$name" != "" ] && [ "$url" != "" ] ; then
if [ $found -eq 0 ] ; then
echo "<cantata version=\"1.0\">" > "$cantataFile"
echo " <category=\""$scriptName"\">" >> "$cantataFile"
echo " <category name=\""$scriptName"\">" >> "$cantataFile"
fi
echo ' <stream name="'$name'" url="'$url'"/>' >> "$cantataFile"
let "found=found +1"