commit eae60f93277ad6d0c11e46df0a29ae0e2bb61194 parent e6969b306b9c057d80608b1c14d15c517b0b06f5 Author: Marcello Stanisci <marcello.stanisci@inria.fr> Date: Wed, 1 Jun 2016 10:12:46 +0200 calling deployment scripts by full path since buildbot ignores PATH when it is set within shell scripts Diffstat:
| M | bin/taler-deployment-restart | | | 8 | ++++++-- |
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git 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