Allow for non-existent directories when pruning documentation

Fixes build error.
This commit is contained in:
Olaf Meeuwissen 2017-10-22 16:26:50 +09:00
parent bd3d1395cc
commit 14c2a93baf
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ for dir in \
cat >> $cfg/docker-excludes <<EOF
path-exclude=$dir/*
EOF
find $dir/* -delete
find $dir/* -delete || true
done
rm $0