diff options
author | Mario <mario@mariovavti.com> | 2021-06-05 09:11:39 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-06-05 09:11:39 +0000 |
commit | cc85c2f4d7fc0e456cc4d4336abe4ee19d03f312 (patch) | |
tree | ff4f4619e6630f5d6a3beeba981f27d585e5e5a1 /vendor/commerceguys/intl/scripts/fetch_data.sh | |
parent | bee4fa9937e2a4292153d6d02e798ba50b5476a9 (diff) | |
download | volse-hubzilla-cc85c2f4d7fc0e456cc4d4336abe4ee19d03f312.tar.gz volse-hubzilla-cc85c2f4d7fc0e456cc4d4336abe4ee19d03f312.tar.bz2 volse-hubzilla-cc85c2f4d7fc0e456cc4d4336abe4ee19d03f312.zip |
composer update commerceguys/intl
Diffstat (limited to 'vendor/commerceguys/intl/scripts/fetch_data.sh')
-rwxr-xr-x[-rw-r--r--] | vendor/commerceguys/intl/scripts/fetch_data.sh | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/vendor/commerceguys/intl/scripts/fetch_data.sh b/vendor/commerceguys/intl/scripts/fetch_data.sh index 804ecc1a1..1b3a339a5 100644..100755 --- a/vendor/commerceguys/intl/scripts/fetch_data.sh +++ b/vendor/commerceguys/intl/scripts/fetch_data.sh @@ -6,14 +6,12 @@ rm -fR assets mkdir assets cd assets -git clone https://github.com/unicode-cldr/cldr-core.git -git clone https://github.com/unicode-cldr/cldr-numbers-full.git -git clone https://github.com/unicode-cldr/cldr-localenames-full.git +git clone https://github.com/unicode-org/cldr-json.git cldr if command -v wget >/dev/null 2>&1; then wget $URL -O c2.xml -else +else if command -v curl >/dev/null 2>&1; then curl $URL > c2.xml |