mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-04 13:05:31 +00:00
ICU-22411 Fixed a ISO currency data file download problem in the currency update checking tool
This commit is contained in:
parent
40c325322e
commit
bbaa68419b
1 changed files with 6 additions and 2 deletions
|
@ -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">
|
||||
|
|
Loading…
Add table
Reference in a new issue