From 7eb2c10711c71ab4f2b614dc1707c5aa5735cb1e Mon Sep 17 00:00:00 2001 From: =?utf8?q?S=C3=A9bastien=20Han?= Date: Mon, 28 Nov 2016 11:52:48 +0100 Subject: [PATCH] ceph-ansible-galaxy: fix workspace path MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 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 --- ceph-ansible-galaxy/build/build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.47.3