Skip to content

Commit

Permalink
Avoid verbose git clone
Browse files Browse the repository at this point in the history
  • Loading branch information
jokesterfr committed Nov 23, 2023
1 parent a0cb6c2 commit fa45a4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down

0 comments on commit fa45a4c

Please sign in to comment.