Moving sanity check in lh_clean to the earliest possibility.

This commit is contained in:
Daniel Baumann 2007-11-18 16:15:43 +01:00
parent fefbe2259e
commit 7e6e498ce7
1 changed files with 7 additions and 7 deletions

View File

@ -33,6 +33,13 @@ Read_conffile config/source
Read_conffile "${LH_CONFIG}"
Set_defaults
# Avoid cases were users accidentally nuke their config/binary
if [ ! -d config ] || [ "$(basename ${PWD})" = "config" ]
then
Echo_error "${PWD} is not a good Debian Live working directory to clean."
exit 1
fi
rm -f .lock
if [ -z "${@}" ]
@ -42,13 +49,6 @@ else
ARGUMENTS="${@}"
fi
# Avoid cases were users accidentally nuke their config/binary
if [ ! -d config ] || [ "$(basename ${PWD})" = "config" ]
then
Echo_error "${PWD} is not a good Debian Live working directory to clean."
exit 1
fi
for ARGUMENT in ${ARGUMENTS}
do
case "${ARGUMENT}" in