view mcabber/hgcset.sh @ 864:a7b3409df6bc

MUC: Work around user server restart When receiving a suspicious groupchat message/presence, from a room we're not a member of, send an unavailable presence message. Thanks to pmw for the report, thanks to hawke (from jdev) for the workaround suggestion.
author Mikael Berthe <mikael@lilotux.net>
date Tue, 23 May 2006 22:05:58 +0200
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