Simplifying template precedence.

This commit is contained in:
Cody A.W. Somerville 2009-06-19 08:17:51 +02:00 committed by Daniel Baumann
parent 0902d1b76d
commit 3e161e501e
1 changed files with 4 additions and 13 deletions
functions

View File

@ -11,23 +11,14 @@ Check_templates ()
{
PACKAGE="${1}"
# Check user defined templates directory
if [ ! -e "${LH_TEMPLATES}" ]
if [ -d "config/templates/${PACKAGE}" ]
then
if [ -d config/templates ]
then
LH_TEMPLATES=config/templates
else
Echo_error "templates not accessible in %s nor config/templates" "${LH_TEMPLATES}"
exit 1
fi
fi
if [ -d "${LH_TEMPLATES}/${PACKAGE}" ]
TEMPLATES="config/templates/${PACKAGE}"
elif [ -d "${LH_TEMPLATES}/${PACKAGE}" ]
then
TEMPLATES="${LH_TEMPLATES}/${PACKAGE}"
else
Echo_error "%s templates not accessible in %s" "${PACKAGE}" "${LH_TEMPLATES}"
Echo_error "%s templates not accessible in %s nor config/templates" "${PACKAGE}" "${LH_TEMPLATES}"
exit 1
fi
}