From b736fa22ffa5019f77e3af8487c53b21c56d3fb5 Mon Sep 17 00:00:00 2001 From: ISSOtm Date: Fri, 27 Mar 2026 22:07:28 +0100 Subject: [PATCH] Suppress status messages when fetching test deps Let's avoid status message spam. --- test/fetch-test-deps.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/fetch-test-deps.sh b/test/fetch-test-deps.sh index 557e896e..cc3e0f49 100755 --- a/test/fetch-test-deps.sh +++ b/test/fetch-test-deps.sh @@ -93,10 +93,10 @@ case "$actionname" in action() { # domain owner repo commit if [ ! -d "$3" ]; then - git clone "https://$1/$2/$3.git" --revision="$4" --depth=1 --recursive --shallow-submodules + git clone "https://$1/$2/$3.git" --revision="$4" --depth=1 --recursive --shallow-submodules --config advice.detachedHead=false fi pushd "$3" - git checkout -f "$4" + git checkout --force --detach "$4" -- if [ -f "../patches/$3.patch" ]; then git apply --ignore-whitespace "../patches/$3.patch" fi