##// END OF EJS Templates
builddeb: ignore errors about find not finding files...
Sean Farley -
r28990:62c245c5 stable
parent child Browse files
Show More
@@ -84,7 +84,7 b' if [ "$CLEANUP" ] ; then'
84 84 OUTPUTDIR=${OUTPUTDIR:=packages/$DISTID-$CODENAME}
85 85 mkdir -p "$OUTPUTDIR"
86 86 find ../mercurial*.deb ../mercurial_*.build ../mercurial_*.changes \
87 -type f -newer $control -print0 | \
87 -type f -newer $control -print0 2>/dev/null | \
88 88 xargs -Inarf -0 mv narf "$OUTPUTDIR"
89 89 echo "Built packages for $debver:"
90 90 find "$OUTPUTDIR" -type f -newer $control -name '*.deb'
General Comments 0
You need to be logged in to leave comments. Login now