]> git.apps.os.sepia.ceph.com Git - ceph-build.git/commitdiff
ceph-deploy: correctly find the deb binaries to push to chacra 208/head
authorAndrew Schoen <aschoen@redhat.com>
Fri, 6 Nov 2015 20:12:31 +0000 (14:12 -0600)
committerAndrew Schoen <aschoen@redhat.com>
Fri, 6 Nov 2015 20:12:31 +0000 (14:12 -0600)
Signed-off-by: Andrew Schoen <aschoen@redhat.com>
ceph-deploy/build/build

index c257e6e6c801b2d8decb38db4ff7952bc6323ada..0cea9deb6e69ce6dc8cf4b88b998f32ffe6405f1 100644 (file)
@@ -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"