comparison mcabber/hgcset.sh @ 777:e6d42f239541

"/version" shows Mercurial changeset (if there's one)
author Mikael Berthe <mikael@lilotux.net>
date Sun, 26 Mar 2006 23:30:21 +0200
parents
children 6cb8edbda6d2
comparison
equal deleted inserted replaced
776:df60fe695dc0 777:e6d42f239541
1 #! /bin/sh
2
3 if [ ! -f logprint.h ]; then
4 echo "You are not in the src directory" >&2
5 exit 1
6 fi
7
8 if which hg > /dev/null 2>&1; then
9 cs=$(hg id 2> /dev/null | cut -d' ' -f1)
10 if test $? -eq 0; then
11 grep -q "$cs" hgcset.h > /dev/null 2>&1 || \
12 echo "#define HGCSET \"$cs\"" > hgcset.h
13 exit 0
14 fi
15 fi
16
17 echo > hgcset.h