Allow for non-existent directories when pruning documentation
Fixes build error.
This commit is contained in:
parent
bd3d1395cc
commit
14c2a93baf
|
|
@ -31,7 +31,7 @@ for dir in \
|
||||||
cat >> $cfg/docker-excludes <<EOF
|
cat >> $cfg/docker-excludes <<EOF
|
||||||
path-exclude=$dir/*
|
path-exclude=$dir/*
|
||||||
EOF
|
EOF
|
||||||
find $dir/* -delete
|
find $dir/* -delete || true
|
||||||
done
|
done
|
||||||
|
|
||||||
rm $0
|
rm $0
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue