Merge pull request #679 from vieux/build

use godep go run everywhere in tests
This commit is contained in:
Andrea Luzzardi 2015-04-27 12:28:10 -07:00
commit 9fd2a3ebc2
1 changed files with 2 additions and 2 deletions

View File

@ -45,7 +45,7 @@ function swarm_manage() {
discovery="$@"
fi
${SWARM_ROOT}/swarm manage -H $SWARM_HOST $discovery &
swarm manage -H $SWARM_HOST $discovery &
SWARM_PID=$!
wait_until_reachable $SWARM_HOST
}
@ -55,7 +55,7 @@ function swarm_join() {
local i=0
for h in ${HOSTS[@]}; do
echo "Swarm join #${i}: $h $@"
${SWARM_ROOT}/swarm join --addr=$h "$@" &
swarm join --addr=$h "$@" &
SWARM_JOIN_PID[$i]=$!
((++i))
done