summaryrefslogtreecommitdiff
path: root/bin/taler-deployment-restart
diff options
context:
space:
mode:
authorMarcello Stanisci <marcello.stanisci@inria.fr>2016-06-01 10:12:46 +0200
committerMarcello Stanisci <marcello.stanisci@inria.fr>2016-06-01 10:12:46 +0200
commiteae60f93277ad6d0c11e46df0a29ae0e2bb61194 (patch)
treed16c7904d7a7606ab8027306a934662a6ce9cf29 /bin/taler-deployment-restart
parente6969b306b9c057d80608b1c14d15c517b0b06f5 (diff)
downloaddeployment-eae60f93277ad6d0c11e46df0a29ae0e2bb61194.tar.gz
deployment-eae60f93277ad6d0c11e46df0a29ae0e2bb61194.tar.bz2
deployment-eae60f93277ad6d0c11e46df0a29ae0e2bb61194.zip
calling deployment scripts by full path since buildbot ignores PATH when it is set within shell scripts
Diffstat (limited to 'bin/taler-deployment-restart')
-rwxr-xr-xbin/taler-deployment-restart8
1 files changed, 6 insertions, 2 deletions
diff --git a/bin/taler-deployment-restart b/bin/taler-deployment-restart
index fe4fac0..6a63fbe 100755
--- a/bin/taler-deployment-restart
+++ b/bin/taler-deployment-restart
@@ -8,5 +8,9 @@ ulimit -c $((100 * 1024))
cd $HOME
-taler-deployment-arm -e -T 1s &>/dev/null
-taler-deployment-start
+# the following commands must (?) be called by absolute
+# path because buildbot ignores PATH set above. That
+# of course works just on systems having everything in the
+# 'right' place.
+$HOME/deployment/bin/taler-deployment-arm -e -T 1s &>/dev/null
+$HOME/deployment/bin/taler-deployment-start