From: Andrew Schoen Date: Fri, 6 Nov 2015 20:12:31 +0000 (-0600) Subject: ceph-deploy: correctly find the deb binaries to push to chacra X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F208%2Fhead;p=ceph-build.git ceph-deploy: correctly find the deb binaries to push to chacra Signed-off-by: Andrew Schoen --- 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"