From: Sébastien Han Date: Mon, 28 Nov 2016 10:52:48 +0000 (+0100) Subject: ceph-ansible-galaxy: fix workspace path X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=7eb2c10711c71ab4f2b614dc1707c5aa5735cb1e;p=ceph-build.git ceph-ansible-galaxy: fix workspace path The current path to execute the script is wrong, see: bash: /home/jenkins-build/build/workspace/ceph-ansible-galaxy/contrib/push-roles-to-ansible-galaxy.sh: No such file or directory It tries to execute ceph-ansible-galaxy/contrib/push-roles-to-ansible-galaxy.sh where the actual script is in ceph-ansible-galaxy/ceph-ansible/contrib/push-roles-to-ansible-galaxy.sh This commit fixes this. Signed-off-by: Sébastien Han --- diff --git a/ceph-ansible-galaxy/build/build b/ceph-ansible-galaxy/build/build index ea396d78..f8036b32 100644 --- a/ceph-ansible-galaxy/build/build +++ b/ceph-ansible-galaxy/build/build @@ -2,4 +2,4 @@ # propagates the change in the necessary Ansible Galaxy repos. # i.e. https://github.com/ceph/ansible-ceph-common -bash "$WORKSPACE"/contrib/push-roles-to-ansible-galaxy.sh +bash "$WORKSPACE"/ceph-ansible/contrib/push-roles-to-ansible-galaxy.sh