From 95c155d61b7aa59e902ccdd0db61593e10869d25 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ricardo=20Monta=C3=B1ana=20G=C3=B3mez?= Date: Mon, 8 Jan 2024 10:57:31 +0100 Subject: [PATCH] Add submodules command to Makefile --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index ee2cf97..84102e0 100644 --- a/Makefile +++ b/Makefile @@ -20,6 +20,10 @@ define ClearTests fi ; endef +submodules: ## Update submodules + @echo ">>> Updating submodules..."; + @git submodule update --init --recursive + @echo ">>> Done"; clean: ## Clean the tests info @echo ">>> Cleaning Debug PyClassifiers tests...";