shutils/metadata: fix incorrect syntax in subst $replaces values.
--HG-- extra : convert_revision : f57eaffc05e99b021aeb77c213b8ca13121b978e
This commit is contained in:
parent
95cb48502a
commit
740ed4e896
|
@ -332,7 +332,7 @@ _EOF
|
||||||
echo "<key>replaces</key>" >> $TMPFPROPS
|
echo "<key>replaces</key>" >> $TMPFPROPS
|
||||||
echo "<array>" >> $TMPFPROPS
|
echo "<array>" >> $TMPFPROPS
|
||||||
for f in ${replaces}; do
|
for f in ${replaces}; do
|
||||||
echo "<string>$f</string>" >> $TMPFPROPS
|
echo "<string>$(echo $f|sed "s|<|\<|g;s|>|\>|g")</string>" >> $TMPFPROPS
|
||||||
done
|
done
|
||||||
echo "</array>" >> $TMPFPROPS
|
echo "</array>" >> $TMPFPROPS
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue