blob: 2d29825ff9130c5b55007e5552646b8c5d17e25d [file] [log] [blame]
Andrew Gerrandb4fb00b2010-02-08 09:46:53 -08001#!/usr/bin/env bash
2# Copyright 2010 The Go Authors. All rights reserved.
3# Use of this source code is governed by a BSD-style
4# license that can be found in the LICENSE file.
5
6# Check that we can use 'hg'
7if ! hg version > /dev/null 2>&1; then
8 echo 'hg not installed' 1>&2
9 exit 2
10fi
11
12# Get numerical revision
Russ Coxcf5ee362010-03-16 18:45:06 -070013VERSION=$(hg identify -n 2>/dev/null)
14if [ $? = 0 ]; then
15 TAG=$(hg identify -t | sed 's!/release!!')
16else
17 OLD=$(hg identify | sed 1q)
18 VERSION=$(echo $OLD | awk '{print $1}')
19 TAG=$(echo $OLD | awk '{print $2}' | sed 's!/release!!')
20fi
Andrew Gerrandb4fb00b2010-02-08 09:46:53 -080021
22# Append tag if not 'tip'
Andrew Gerrandb4fb00b2010-02-08 09:46:53 -080023if [[ "$TAG" != "tip" ]]; then
24 VERSION="$VERSION $TAG"
25fi
26
27echo $VERSION
28