From f6dcf066650c065765480dcf43f4f67d5c3c3eff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20KUBLER?= Date: Fri, 12 Jul 2024 17:36:48 +0200 Subject: [PATCH] fix(php-buildpack): fix zend opcache extension support --- lib/composer | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/composer b/lib/composer index 57233b83..b3b9faf5 100644 --- a/lib/composer +++ b/lib/composer @@ -125,7 +125,7 @@ function install_composer_deps() { fi fi - is_embedded="$(is_embedded_extension ${ext})" + is_embedded="$( is_embedded_extension "${ext}" )" rc=$? [ ${rc} -ne 0 ] && error "error while trying to identify if ${ext} is embedded in runtime."