Commit 4dfdacd2 authored by Andrew Gerrand's avatar Andrew Gerrand

build: make version.bash aware of branches

Fixes #2026.

R=bradfitz, rsc
CC=golang-dev
https://golang.org/cl/4645074
parent 73896bdc
......@@ -16,8 +16,15 @@ if [ $? != 0 ]; then
VERSION=$(echo $OLD | awk '{print $1}')
fi
# Find most recent known release tag.
# Get branch type
BRANCH=release
if [ "$(hg identify -b 2>/dev/null)" == "default" ]; then
BRANCH=weekly
fi
# Find most recent known release or weekly tag.
TAG=$(hg tags |
grep $BRANCH |
sed 's/:.*//' |
sort -rn -k2 |
awk -v ver=$VERSION '$2 <= ver && $1~/^(release|weekly)\./ {print $1}' |
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment