From 20b06ec47b7408720ec80a673a522a91e31f0f97 Mon Sep 17 00:00:00 2001 From: Andrew Schoen Date: Fri, 6 Nov 2015 14:12:31 -0600 Subject: [PATCH] ceph-deploy: correctly find the deb binaries to push to chacra Signed-off-by: Andrew Schoen --- ceph-deploy/build/build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ceph-deploy/build/build b/ceph-deploy/build/build index c257e6e6..0cea9deb 100644 --- a/ceph-deploy/build/build +++ b/ceph-deploy/build/build @@ -168,7 +168,8 @@ then [ "$FORCE" = true ] && chacra_flags="--force" || chacra_flags="" # push binaries to chacra - find $WORKSPACE/ceph-deploy/* | egrep "*\.(changes|deb|dsc|gz)$" | egrep -v "(Packages|Sources|Contents)" | chacractl binary ${chacra_flags} create ${chacra_endpoint} + # the binaries are created in one directory up from $WORKSPACE + find ../ | egrep "*\.(changes|deb|dsc|gz)$" | egrep -v "(Packages|Sources|Contents)" | chacractl binary ${chacra_flags} create ${chacra_endpoint} echo "Done" -- 2.47.3