ICU-22411 Fixed a ISO currency data file download problem in the currency update checking tool

This commit is contained in:
Yoshito Umaoka 2023-06-08 13:25:20 -04:00 committed by Markus Scherer
parent 40c325322e
commit bbaa68419b

View file

@ -43,8 +43,12 @@
<target name="_downloadXml" unless="isLocalXml">
<echo message="Downloading ISO 4217 XML data files"/>
<mkdir dir="${xml.dir}"/>
<get src="${base.url}${current.xml}" dest="${xml.dir}"/>
<get src="${base.url}${historic.xml}" dest="${xml.dir}"/>
<get src="${base.url}${current.xml}" dest="${xml.dir}">
<header name="Accept" value="application/xml"/>
</get>
<get src="${base.url}${historic.xml}" dest="${xml.dir}">
<header name="Accept" value="application/xml"/>
</get>
</target>
<target name="xmlData" depends="_localXml, _downloadXml" description="Prepare necessary ISO 4217 XML data files">