Emit a warning when running lh_build without a config/ directory.
This commit is contained in:
parent
39310a3121
commit
9fba09b735
|
@ -24,6 +24,11 @@ USAGE="${PROGRAM} [--force]"
|
||||||
|
|
||||||
Arguments "${@}"
|
Arguments "${@}"
|
||||||
|
|
||||||
|
if [ ! -d config ]
|
||||||
|
then
|
||||||
|
Echo_warning "No config/ directory; using defaults for all options"
|
||||||
|
fi
|
||||||
|
|
||||||
# Bootstrapping system
|
# Bootstrapping system
|
||||||
lh_bootstrap ${*}
|
lh_bootstrap ${*}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue