From 1105a4671d0b5cef0db34495b931487aa466fec6 Mon Sep 17 00:00:00 2001 From: Andrew Schoen Date: Thu, 29 Oct 2015 12:41:16 -0500 Subject: [PATCH] ceph-build-next: fix the grep that finds the binaries to push to chacra Signed-off-by: Andrew Schoen --- ceph-build-next/build/build_deb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)" -- 2.39.5