From 745a46b6db35f5f9331613a8345c0176dcf65a15 Mon Sep 17 00:00:00 2001 From: Jan Kiene Date: Mon, 2 Jun 2025 11:25:49 +0200 Subject: [PATCH] remove -v arg from git branch call this avoids matching the branch name on a commit message --- ci/get_float_ref_branch_name.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/get_float_ref_branch_name.sh b/ci/get_float_ref_branch_name.sh index fe160da023..407a22a7a0 100755 --- a/ci/get_float_ref_branch_name.sh +++ b/ci/get_float_ref_branch_name.sh @@ -53,7 +53,7 @@ fi # Replace only the first occurrence, as "basop" may be present in the later description # If the format is correct, then before "_basop", only numbers can occur float_ref_branchname="${branchname/basop/ref}" -git_result=$(git branch -av) +git_result=$(git branch -a) # If the branch does not exist, default to "float-pc" if [[ "$git_result" =~ "$float_ref_branchname" ]]; then -- GitLab