From af983df1f68f6c49fc740287927618a30ce3e8a8 Mon Sep 17 00:00:00 2001 From: Taras Madan Date: Thu, 29 Aug 2024 15:05:23 +0200 Subject: tools/syz-bq: make sure branch information is available locally tools/syz-covermerger uses CheckoutCommit() now. CheckoutCommit calls "git fetch --tags origin commit". The tags are not available in this case. --- tools/syz-bq.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/syz-bq.sh b/tools/syz-bq.sh index 5fba54634..45b5608f7 100755 --- a/tools/syz-bq.sh +++ b/tools/syz-bq.sh @@ -52,6 +52,7 @@ if [ ! -d $base_dir ]; then fi cd $base_dir remote=$(git remote -v | grep $repo | head -n1 | awk '{print $1;}') +git fetch --tags $remote git checkout $remote/$branch cd - -- cgit mrf-deployment