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:
parent
733e453306
commit
8fed454c06
|
@ -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 ${*}
|
||||
|
||||
|
|
Loading…
Reference in New Issue