#!/bin/sh # # Deny all commits that contain leading tabs REPOS="$1" TXN="$2" /home/catalyst/bin/ban-tabs.pl "$REPOS" "$TXN" || exit 1 # All checks passed, so allow the commit. exit 0