From cf374b677f2d681680eed89e2df52fc1d6d117ce Mon Sep 17 00:00:00 2001 From: Dan Mick Date: Wed, 7 May 2025 13:59:12 -0700 Subject: [PATCH] do_cmake.sh: remove --progress, it's just noise and is particularly annoying in jenkins logs Signed-off-by: Dan Mick --- do_cmake.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/do_cmake.sh b/do_cmake.sh index 2f5c5ee5bd477..a377515171214 100755 --- a/do_cmake.sh +++ b/do_cmake.sh @@ -2,7 +2,7 @@ set -ex if [ -d .git ]; then - git submodule update --init --recursive --progress --recommend-shallow + git submodule update --init --recursive --recommend-shallow fi : ${BUILD_DIR:=build} -- 2.39.5