blob: f5c3f211095d8a8304361ce4dd2499266e1934d1 (
plain) (
tree)
|
|
#!/bin/sh
URL="https://www.currency-iso.org/dam/downloads/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
|