mirror of
https://github.com/docker/compose.git
synced 2025-05-14 19:40:11 +02:00
12 lines
175 B
Bash
Executable File
12 lines
175 B
Bash
Executable File
#!/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
|