view mcabber/hgcset.sh @ 1983:45e0b13a39e2

Refresh the roster when MUC bookmarks are received If the bookmarks are received after the roster contents we need to make sure that the roster window is redrawn.
author Jan Zachorowski <quantifier666@gmail.com>
date Sun, 27 Mar 2011 10:43:13 +0200
parents 41c26b7d2890
children e8f2db654e67
line wrap: on
line source

#! /bin/sh

if [ ! -f logprint.h ]; then
  echo "You are not in the mcabber 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