Suppress status messages when fetching test deps

Let's avoid status message spam.
This commit is contained in:
ISSOtm
2026-03-27 22:07:28 +01:00
parent 0692d1d28c
commit b736fa22ff
+2 -2
View File
@@ -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