view mcabber/hgcset.sh @ 1116:14e458020e23

Fix a bug in the history logging (incoming "/me " messages) There is a bug in the history logging. If someone sends a "/me bla" message, it won't be saved, only "MR 20070105T00:23:05Z 000" (Problem reported by Frank Zschockelt)
author Mikael Berthe <mikael@lilotux.net>
date Sat, 06 Jan 2007 12:10:17 +0100
parents e6d42f239541
children 6cb8edbda6d2
line wrap: on
line source

#! /bin/sh

if [ ! -f logprint.h ]; then
  echo "You are not in the src directory" >&2
  exit 1
fi

if which hg > /dev/null 2>&1; then
  cs=$(hg id 2> /dev/null | cut -d' ' -f1)
  if test $? -eq 0; then
    grep -q "$cs" hgcset.h > /dev/null 2>&1 || \
      echo "#define HGCSET \"$cs\"" > hgcset.h
    exit 0
  fi
fi

echo > hgcset.h