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}" --binary
|
||||||
"${0}" --stage
|
"${0}" --stage
|
||||||
"${0}" --source
|
"${0}" --source
|
||||||
|
|
||||||
|
if [ -d scripts ]
|
||||||
|
then
|
||||||
rmdir --ignore-fail-on-non-empty scripts
|
rmdir --ignore-fail-on-non-empty scripts
|
||||||
|
fi
|
||||||
;;
|
;;
|
||||||
|
|
||||||
--cache)
|
--cache)
|
||||||
|
|
Loading…
Reference in New Issue