From acccaacfbbb8d59f94515b071badd8f4b6b2be02 Mon Sep 17 00:00:00 2001 From: Andrew Schoen Date: Fri, 6 Nov 2015 10:45:52 -0600 Subject: [PATCH] ceph-deploy: don't use a relative path when finding binaries Signed-off-by: Andrew Schoen --- ceph-deploy/build/build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ceph-deploy/build/build b/ceph-deploy/build/build index 07ddc9ca..09d05146 100644 --- a/ceph-deploy/build/build +++ b/ceph-deploy/build/build @@ -129,7 +129,7 @@ then [ "$FORCE" = true ] && chacra_flags="--force" || chacra_flags="" # push binaries to chacra - find ../ | egrep "*\.(changes|deb|dsc|gz)$" | egrep -v "(Packages|Sources|Contents)" | chacractl binary ${chacra_flags} create ${chacra_endpoint} + find $WORKSPACE/ceph-deploy/* | egrep "*\.(changes|deb|dsc|gz)$" | egrep -v "(Packages|Sources|Contents)" | chacractl binary ${chacra_flags} create ${chacra_endpoint} echo "Done" -- 2.39.5