From 0da25edc1506135493199b8016f5938991281bbc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Barthelet?= Date: Mon, 29 Dec 2025 23:43:38 +0100 Subject: [PATCH] Automatically initialize and clone submodules MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Use --recurse-submodules option in initial git clone to let Git automatically initialize and clone any submodules that are part of the repository. In that case: the submodule 'pkg/validator/data/disposable-email-domains' Signed-off-by: Frédéric Barthelet --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 784d2581e..a2925bc98 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ Probo is designed to be accessible, transparent, and community-driven. 1. Clone the repository: ```bash - git clone https://github.com/getprobo/probo.git + git clone --recurse-submodules https://github.com/getprobo/probo.git cd probo ```