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

This commit is contained in:
Chris Lamb 2008-06-20 01:33:15 +01:00 committed by Daniel Baumann
parent 39310a3121
commit 9fba09b735
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 ${*}