Andrew Gerrand | b4fb00b | 2010-02-08 09:46:53 -0800 | [diff] [blame] | 1 | #!/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' |
| 7 | if ! hg version > /dev/null 2>&1; then |
| 8 | echo 'hg not installed' 1>&2 |
| 9 | exit 2 |
| 10 | fi |
| 11 | |
| 12 | # Get numerical revision |
Russ Cox | cf5ee36 | 2010-03-16 18:45:06 -0700 | [diff] [blame] | 13 | VERSION=$(hg identify -n 2>/dev/null) |
| 14 | if [ $? = 0 ]; then |
| 15 | TAG=$(hg identify -t | sed 's!/release!!') |
| 16 | else |
| 17 | OLD=$(hg identify | sed 1q) |
| 18 | VERSION=$(echo $OLD | awk '{print $1}') |
| 19 | TAG=$(echo $OLD | awk '{print $2}' | sed 's!/release!!') |
| 20 | fi |
Andrew Gerrand | b4fb00b | 2010-02-08 09:46:53 -0800 | [diff] [blame] | 21 | |
| 22 | # Append tag if not 'tip' |
Andrew Gerrand | b4fb00b | 2010-02-08 09:46:53 -0800 | [diff] [blame] | 23 | if [[ "$TAG" != "tip" ]]; then |
| 24 | VERSION="$VERSION $TAG" |
| 25 | fi |
| 26 | |
| 27 | echo $VERSION |
| 28 | |