Skip to content

Commit

Permalink
frr: fix build script to only rely on annotated tags
Browse files Browse the repository at this point in the history
A recent added FRR tag base_fuzz_20230907 made the builds fail. Change "git
describe" command to only account annotated release tags.
  • Loading branch information
c-po committed Sep 11, 2023
1 parent 704e472 commit 0f75e12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/frr/build-frr.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@ fi
# Build Debian FRR package
echo "I: Build Debian FRR Package"
# extract "real" git commit for FRR version identifier
dch -v "$(git describe --tags | cut -c5-)" "VyOS build - FRR"
dch -v "$(git describe | cut -c5-)" "VyOS build - FRR"
dpkg-buildpackage -us -uc -tc -b -Ppkg.frr.rtrlib

0 comments on commit 0f75e12

Please sign in to comment.