mirror of https://github.com/docker/compose.git
12 lines
175 B
Plaintext
12 lines
175 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
|
||
|
script/build-linux
|
||
|
# TODO: add script/build-image
|
||
|
else
|
||
|
script/prepare-osx
|
||
|
script/build-osx
|
||
|
fi
|