From cbf345c1393103016f4156be2fade49c16d0525e Mon Sep 17 00:00:00 2001 From: Konstantin Pastbin Date: Thu, 8 May 2025 22:26:40 +0700 Subject: [PATCH] Shallow submodules clone in configure.sh Signed-off-by: Konstantin Pastbin --- configure.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.sh b/configure.sh index 77b55242a..f103ae374 100755 --- a/configure.sh +++ b/configure.sh @@ -8,7 +8,7 @@ set -euo pipefail echo "Configuring the repository for development." if [ ! -d 3party/boost/tools ]; then - git submodule update --init --recursive + git submodule update --init --recursive --depth 1 fi pushd 3party/boost/ ./bootstrap.sh