forked from a64f7bb4-7358-4778-9fbe-3b882c34cc1d/v1
23 lines
486 B
PHP
23 lines
486 B
PHP
#!/bin/sh
|
|
|
|
URL="https://www.six-group.com/dam/download/financial-information/data-center/iso-currrency/lists/list-one.xml"
|
|
|
|
rm -fR assets
|
|
mkdir assets
|
|
cd assets
|
|
|
|
git clone --depth 1 https://github.com/unicode-org/cldr-json.git cldr
|
|
|
|
if command -v wget >/dev/null 2>&1;
|
|
then
|
|
wget $URL -O c2.xml
|
|
else
|
|
if command -v curl >/dev/null 2>&1;
|
|
then
|
|
curl $URL > c2.xml
|
|
else
|
|
echo "I require wget or curl but it's not installed. Aborting."
|
|
exit 1
|
|
fi
|
|
fi
|