#!/bin/sh

REPOS="$1"
TXN="$2"

SVNLOOK=/usr/local/bin/svnlook
$SVNLOOK changed -t "$TXN" "$REPOS" | \
    grep "~$" >&2 && \
    exit 1

exit 0

