From: Andrew Schoen Date: Thu, 29 Oct 2015 17:41:16 +0000 (-0500) Subject: ceph-build-next: fix the grep that finds the binaries to push to chacra X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=1105a4671d0b5cef0db34495b931487aa466fec6;p=ceph-build.git ceph-build-next: fix the grep that finds the binaries to push to chacra Signed-off-by: Andrew Schoen --- diff --git a/ceph-build-next/build/build_deb b/ceph-build-next/build/build_deb index 90ef4322..a3b538c5 100644 --- a/ceph-build-next/build/build_deb +++ b/ceph-build-next/build/build_deb @@ -176,7 +176,7 @@ echo "Start Time = $start_time" echo " End Time = $(date)" # push binaries to chacra -find release/$vers/ | grep 'changes\|deb\|dsc\|gz' | chacractl binary create ${chacra_endpoint} +find release/$vers/ | egrep "*\.(changes|deb|dsc|gz)$" | egrep -v "(Packages|Sources|Contents)" | chacractl binary create ${chacra_endpoint} echo "End Date: $(date)"