Emit a warning when running lh_build without a config/ directory.

Signed-off-by: Chris Lamb <chris@chris-lamb.co.uk>
This commit is contained in:
Chris Lamb 2008-06-20 01:33:15 +01:00
parent 733e453306
commit 8fed454c06
1 changed files with 5 additions and 0 deletions

View File

@ -24,6 +24,11 @@ USAGE="${PROGRAM} [--force]"
Arguments "${@}"
if [ ! -d config ]
then
Echo_warning "No config/ directory; using defaults for all options"
fi
# Bootstrapping system
lh_bootstrap ${*}