view mcabber/hgcset.sh @ 1274:c33b5b6fbf08

Fix screen refresh issue (spotted by franky) The message "Reading <JID> history file...", when loading a big history file, was displayed too late.
author Mikael Berthe <mikael@lilotux.net>
date Wed, 22 Aug 2007 22:19:33 +0200
parents 6cb8edbda6d2
children 41c26b7d2890
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
    if [ x"$cs" != x ]; then
      grep -q "$cs" hgcset.h > /dev/null 2>&1 || \
        echo "#define HGCSET \"$cs\"" > hgcset.h
      exit 0
    fi
  fi
fi

echo > hgcset.h