#!/bin/sh
REPOS="$1"
TXN="$2"

# Check log message length and tag modification
/path/to/check_log_and_tags.pl "$REPOS" "$TXN" || exit 1

# All checks passed, so allow the commit.
exit 0
