From f343b1dcde18228830f17c92c91d32752b4868f4 Mon Sep 17 00:00:00 2001 From: Michele Locati Date: Mon, 7 Dec 2020 19:30:14 +0100 Subject: [PATCH] Install xdebug 3.0.1 instead of 3.0.0 by default I really miss a stable version of pickle ;_; Test: xdebug --- install-php-extensions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install-php-extensions b/install-php-extensions index 7a10566..c08fabe 100755 --- a/install-php-extensions +++ b/install-php-extensions @@ -1514,7 +1514,7 @@ installPECLModule() { if test $PHP_MAJMIN_VERSION -ge 800; then # Workaround for picke problem - see https://github.com/FriendsOfPHP/pickle/issues/188 and https://github.com/FriendsOfPHP/pickle/issues/191 if test -z "$installPECLModule_version"; then - installPECLModule_version=3.0.0 + installPECLModule_version=3.0.1 fi installPECLModule_src="$(getPackageSource https://codeload.github.com/xdebug/xdebug/tar.gz/$installPECLModule_version)" cd -- "$installPECLModule_src"