From 44ed0d6fb0cefe30c9c7892c61c34a21a7213c56 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Sun, 4 Aug 2024 11:46:39 +0200 Subject: [PATCH] Makefile: Fix error: setting require-dev does not exist or is not supported by this command --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index da4a4e48d0..fe09009c86 100644 --- a/Makefile +++ b/Makefile @@ -22,7 +22,7 @@ complete: roundcubemail-git (cd roundcubemail-$(VERSION); php /tmp/composer.phar config platform.php $(PHP_VERSION)) (cd roundcubemail-$(VERSION); php /tmp/composer.phar require "kolab/net_ldap3:~1.1.4" --no-update --no-install) (cd roundcubemail-$(VERSION); php /tmp/composer.phar config --unset suggest.kolab/net_ldap3) - (cd roundcubemail-$(VERSION); php /tmp/composer.phar config --unset require-dev) + (cd roundcubemail-$(VERSION); php /tmp/composer.phar remove phpunit/phpunit --dev --no-update) (cd roundcubemail-$(VERSION); php /tmp/composer.phar install --prefer-dist --no-dev --no-interaction) (cd roundcubemail-$(VERSION); php /tmp/composer.phar config --unset platform) (cd roundcubemail-$(VERSION); bin/install-jsdeps.sh --force)