From fa45a4c65e048f221034bbaf57a3107a7544713c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20D=C3=A9siles?= <1536672+jokesterfr@users.noreply.github.com> Date: Thu, 23 Nov 2023 15:23:24 +0100 Subject: [PATCH] Avoid verbose git clone --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1b433382..4fd4b98e 100755 --- a/Makefile +++ b/Makefile @@ -100,7 +100,7 @@ prestashop: prestashop/prestashop-${PS_VERSION}: prestashop composer.phar @if [ ! -d "prestashop/prestashop-${PS_VERSION}" ]; then \ - git clone --depth 1 --branch ${PS_VERSION} https://github.com/PrestaShop/PrestaShop.git prestashop/prestashop-${PS_VERSION}; \ + git clone --depth 1 --branch ${PS_VERSION} https://github.com/PrestaShop/PrestaShop.git prestashop/prestashop-${PS_VERSION} > /dev/null; \ if [ "${PS_VERSION}" != "1.6.1.24" ]; then \ ./composer.phar -d ./prestashop/prestashop-${PS_VERSION} install; \ fi \