#!/bin/sh
#
# This Arch hook enables one to have a per-tree hook script instead of
# the per-user default one.
#

hook="${ARCH_TREE_ROOT}/{arch}/=hook"

if [ -x "${hook}" ]
then
    "${hook}" $@
fi
