mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
3996975b08
This means we can vendor libnetwork without special casing, and it is built the same way as the other external binaries. Signed-off-by: Justin Cormack <justin.cormack@docker.com>
13 lines
250 B
Bash
13 lines
250 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
[ -z "$KEEPDEST" ] && \
|
|
rm -rf "$DEST"
|
|
|
|
(
|
|
source "${MAKEDIR}/.binary-setup"
|
|
export BINARY_SHORT_NAME="$DOCKER_DAEMON_BINARY_NAME"
|
|
export SOURCE_PATH='./cmd/dockerd'
|
|
source "${MAKEDIR}/.binary"
|
|
copy_binaries "$DEST" 'hash'
|
|
)
|