Don't attempt to remove scripts directory in lh_clean if it doesn't exist.
This commit is contained in:
parent
a41e039597
commit
34192bcf31
|
@ -52,7 +52,11 @@ do
|
|||
"${0}" --binary
|
||||
"${0}" --stage
|
||||
"${0}" --source
|
||||
rmdir --ignore-fail-on-non-empty scripts
|
||||
|
||||
if [ -d scripts ]
|
||||
then
|
||||
rmdir --ignore-fail-on-non-empty scripts
|
||||
fi
|
||||
;;
|
||||
|
||||
--cache)
|
||||
|
|
Loading…
Reference in New Issue