Remove referenced to developing on the host, we shouldn't support it. Move script/validate to scripts/validate to be consistent. Set the default target to be binary instead of clean. Signed-off-by: Daniel Nephin <dnephin@docker.com>
13 lines
255 B
Bash
Executable File
13 lines
255 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -eu -o pipefail
|
|
|
|
export BUILDDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
echo "Building all binaries"
|
|
SHELL=/bin/bash parallel ::: \
|
|
"$BUILDDIR/linux-cross" \
|
|
"$BUILDDIR/windows" \
|
|
"$BUILDDIR/osx" \
|
|
;
|