Attempting to build the lastest tag instead of a hard-coded one

This commit is contained in:
anon8675309 2021-06-20 20:42:43 -05:00
parent f852f1716e
commit d927db1c0d
1 changed files with 5 additions and 9 deletions

View File

@ -118,16 +118,12 @@ else
fi;
if [ "$SNAPSHOT" == "stable" ]; then
if [ "$BRANCH" == "" ]; then
echo "About to run some basic commands for debugging..."
pwd; ls; git remote -v; git branch -v; git status
echo "Listing all of the tags for this repo:"
git tag -l
echo "About to get the hash of the most recent tag"
REV=$(git rev-list --tags --max-count=1)
echo "REV = $REV"
#REV=$(git rev-list --tags --max-count=1)
BRANCH=`git describe --tags $(git rev-list --tags --max-count=1)`;
echo "BRANCH = $BRANCH"
BRANCH=`git tag -l | sort | grep -v '^v.*' | tail -n 1`
if [ -z "$BRANCH" ]; then
# This should only happen in CI environments where tag info isn't available
BRANCH=`grep ' release$' distros/fedora/zoneminder.spec | head -n 1 | sed -e 's/ release//g' -e 's/[^0-9]*//'`
fi
echo "BRANCH = $BRANCH"
if [ "$BRANCH" == "" ]; then
echo "Unable to determine latest stable branch!"