mirror of https://github.com/docker/docs.git
Merge pull request #688 from aluzzardi/fix-integration
fix integration test build of swarm
This commit is contained in:
commit
5872d4c7b0
|
@ -25,7 +25,7 @@ function join() {
|
|||
|
||||
# Build the Swarm binary (if not already built)
|
||||
function build_swarm() {
|
||||
[ -x $SWARM_BINARY ] || (cd $SWARM_ROOT && godep go build -o $SWARM_BINARY)
|
||||
[ -x $SWARM_BINARY ] || (rm -f $SWARM_BINARY && cd $SWARM_ROOT && godep go build -o $SWARM_BINARY)
|
||||
}
|
||||
|
||||
# Run the swarm binary. You must NOT fork this command (swarm foo &) as the PID
|
||||
|
|
Loading…
Reference in New Issue