mirror of
https://github.com/moby/moby.git
synced 2026-01-11 18:51:37 +00:00
Signed-off-by: Otto Kekäläinen <otto@seravo.fi>
(cherry picked from commit 644a7426cc)
Signed-off-by: Tibor Vass <tibor@docker.com>
16 lines
270 B
Bash
16 lines
270 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
# This script exists as backwards compatibility for CI
|
|
(
|
|
DEST="${DEST}-client"
|
|
ABS_DEST="${ABS_DEST}-client"
|
|
. hack/make/dynbinary-client
|
|
)
|
|
(
|
|
|
|
DEST="${DEST}-daemon"
|
|
ABS_DEST="${ABS_DEST}-daemon"
|
|
. hack/make/dynbinary-daemon
|
|
)
|