From d8ae77ac46049ff6dec854c8375d1d1fd1be35dc Mon Sep 17 00:00:00 2001 From: Dirk Alders Date: Sun, 10 Aug 2025 18:45:53 +0200 Subject: [PATCH] Makefile added with Version 2.1 --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2644b7d..58bfaa7 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -# git helper Makefile: Version 2.0 (2025-08-05) +# git helper Makefile: Version 2.1 (2025-08-05) default: help .ONESHELL: @@ -33,6 +33,7 @@ localinit: init: print_head # Init git repo if [[ -e $(GIT_FLAG) ]]; then + echo -e "\033[1;33mInitialising git submodules...\e[0m" git submodule init git submodule update fi @@ -43,10 +44,12 @@ init: print_head # Create venv if needed if [[ -e $(VENV_FLAG) ]]; then if [[ ! -e $(VENV_FOLDER) ]]; then + echo -e "\033[1;33mCreating virtual env...\e[0m" mkvenv fi fi # Start local init + echo -e "\033[1;33mDoing localinit...\e[0m" $(MAKE) localinit update_submodules: