From cd1f4279f3fd22761480dbe26cc57c5afa2f0307 Mon Sep 17 00:00:00 2001 From: Tristan Darricau Date: Mon, 1 Feb 2016 22:40:49 +0100 Subject: [PATCH] Set status --- docker/scripts/set-result-status.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docker/scripts/set-result-status.sh b/docker/scripts/set-result-status.sh index ece118d641..1cfdae0286 100755 --- a/docker/scripts/set-result-status.sh +++ b/docker/scripts/set-result-status.sh @@ -13,11 +13,11 @@ fi if [ $res -eq 0 ]; then echo Send success - ./set-status.sh 'success' 'The Bamboo build is a success' ${step} + $(pwd)/set-status.sh 'success' 'The Bamboo build is a success' ${step} elif [ $res -eq 1 ]; then echo Send Failure - ./set-status.sh 'failure' 'The Bamboo build failed' ${step} + $(pwd)/set-status.sh 'failure' 'The Bamboo build failed' ${step} else echo Send error - ./set-status.sh 'error' 'The Bamboo build is in error' ${step} + $(pwd)/set-status.sh 'error' 'The Bamboo build is in error' ${step} fi