Mercurial > hg
diff contrib/builddeb @ 28990:62c245c59433 stable
builddeb: ignore errors about find not finding files
The debuild command may output less files than we explicitly list so let's not
error out if none exist.
author | Sean Farley <sean@farley.io> |
---|---|
date | Fri, 15 Apr 2016 14:27:42 -0700 |
parents | a8256e3701be |
children | 1967c6b714e6 |
line wrap: on
line diff
--- a/contrib/builddeb Sat Apr 16 12:42:53 2016 -0700 +++ b/contrib/builddeb Fri Apr 15 14:27:42 2016 -0700 @@ -84,7 +84,7 @@ OUTPUTDIR=${OUTPUTDIR:=packages/$DISTID-$CODENAME} mkdir -p "$OUTPUTDIR" find ../mercurial*.deb ../mercurial_*.build ../mercurial_*.changes \ - -type f -newer $control -print0 | \ + -type f -newer $control -print0 2>/dev/null | \ xargs -Inarf -0 mv narf "$OUTPUTDIR" echo "Built packages for $debver:" find "$OUTPUTDIR" -type f -newer $control -name '*.deb'