This is an automated email from Gerrit. "zapb <d...@zapb.de>" just uploaded a new patch set to Gerrit, which you can find at https://review.openocd.org/c/openocd/+/8382
-- gerrit commit f155882403d7acce1c02df7d8e6b04783e65cfa0 Author: Marc Schink <d...@zapb.de> Date: Tue Jul 2 16:12:25 2024 +0200 tools/release: Set up Git submodules Since Git submodules are not set up by default anymore, use the 'with-submodules' bootstrap argument to ensure that the 'git2cl' submodule is available. Change-Id: I2fb2f8f3acf43bc0f8951b6391c49965d8be2b39 Signed-off-by: Marc Schink <d...@zapb.de> diff --git a/tools/release.sh b/tools/release.sh index ac8af646e8..9f0a9ae376 100755 --- a/tools/release.sh +++ b/tools/release.sh @@ -60,7 +60,7 @@ do_info() { do_bootstrap() { echo -n "Bootstrapping..." - ./bootstrap 2>&1 | perl tools/logger.pl > "release-bootstrap.log" + ./bootstrap with-submodules 2>&1 | perl tools/logger.pl > "release-bootstrap.log" } maybe_bootstrap() { [ -f "configure" ] || do_bootstrap; } --