mirror of
https://github.com/docker/cli.git
synced 2026-01-13 18:22:35 +03:00
13 lines
248 B
Bash
Executable File
13 lines
248 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -eu -o pipefail
|
|
|
|
BUILDDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
echo "Building all binaries"
|
|
SHELL=/bin/bash parallel ::: \
|
|
"$BUILDDIR/linux-cross" \
|
|
"$BUILDDIR/windows" \
|
|
"$BUILDDIR/osx" \
|
|
;
|