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 2790cec commit 81d68d4Copy full SHA for 81d68d4
images/linux/scripts/installers/php.sh
@@ -13,6 +13,12 @@ source $HELPER_SCRIPTS/install.sh
13
apt-add-repository ppa:ondrej/php -y
14
apt-get update
15
16
+# install specific version of libpcre2 otherwise latest ppa-hosted php fails
17
+# https://github.com/oerdnj/deb.sury.org/issues/1682
18
+if isUbuntu20 ; then
19
+ apt-get install -y libpcre2-8-0
20
+fi
21
+
22
# Install PHP
23
php_versions=$(get_toolset_value '.php.versions[]')
24
0 commit comments