We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8582cb1 commit 462e710Copy full SHA for 462e710
1 file changed
src/scripts/extensions/intl.sh
@@ -12,6 +12,7 @@ install_icu() {
12
add_intl() {
13
icu=$(echo "$1" | cut -d'-' -f 2)
14
supported_version=$(get -s -n "" https://api.github.com/repos/shivammathur/icu-intl/releases/tags/intl-"$icu" | grep -Po "php${version?}-intl-$icu" | head -n 1)
15
+ [ -z "$supported_version" ] && supported_version=$(get -s -n "" https://github.com/shivammathur/icu-intl/releases/expanded_assets/intl-"$icu" | grep -Po "php$version-intl-$icu" | head -n 1)
16
if [ "php$version-intl-$icu" != "$supported_version" ]; then
17
add_log "${cross:?}" "intl" "ICU $icu is not supported for PHP $version"
18
else
0 commit comments