From f97eb78628f04483062fd61a499debf6dd904699 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Szab=C3=B3=20B=C3=A1lint?= Date: Tue, 22 Oct 2024 14:09:16 +0300 Subject: [PATCH] feat(makefile): show progress of submodule update --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index bd8ca643..44ed8f86 100644 --- a/makefile +++ b/makefile @@ -29,7 +29,7 @@ ts-cleanup: # client building and cleanup targets client-build: @ echo "[*] building client" - @ git submodule update --init --recursive + @ git submodule update --init --recursive --progress @ mkdir client/Build; cd client/Build; cmake .. @ if [ -d "client/Modules" ]; then echo "Modules installed"; else git clone https://github.com/HavocFramework/Modules client/Modules --single-branch --branch `git rev-parse --abbrev-ref HEAD`; fi @ cmake --build client/Build -- -j 4