minor fix

This commit is contained in:
Runa A. Sandvik 2011-09-05 00:36:50 +00:00
parent 0471b290c9
commit 068827678b

View File

@ -195,6 +195,12 @@ for file in $wml ; do
svn add "$popath/$pofile" svn add "$popath/$pofile"
echo "$popath/$pofile" > $tmplog echo "$popath/$pofile" > $tmplog
fi fi
# Remove po4a comments from download.wml
if [ $wmlfile = "download.wml" ]
then
sed -i 's/PO4ASHARPEND-->//g' "$popath/$pofile"
fi
fi fi
# Update the file with po4a-updatepo to make the # Update the file with po4a-updatepo to make the
@ -240,6 +246,12 @@ for file in $wml ; do
echo "$popath/$pofile" > $tmplog echo "$popath/$pofile" > $tmplog
else else
echo "$popath/$pofile" > $tmplog echo "$popath/$pofile" > $tmplog
if [ $wmlfile = "download.wml" ]
then
sed -i 's/PO4ASHARPEND-->//g' "$popath/$pofile"
fi
fi fi
fi fi