From 04effd85db6921daff888f1c76e2a62c2e4e779f Mon Sep 17 00:00:00 2001 From: GUNJ JOSHI Date: Wed, 28 Feb 2024 00:29:18 +0530 Subject: [PATCH] chore: added message for successful initialization Added a success message in the Makefile, which shows up on successful initialization --- tools/make/lib/init/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/make/lib/init/Makefile b/tools/make/lib/init/Makefile index 211951d6e8bd..40d469993ca0 100644 --- a/tools/make/lib/init/Makefile +++ b/tools/make/lib/init/Makefile @@ -36,5 +36,6 @@ include $(TOOLS_MAKE_LIB_DIR)/init/git_hooks.mk # make init #/ init: init-git-hooks init-eslint-plugins + @echo "Initialization Successful." .PHONY: init