mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
644a7426cc
Signed-off-by: Otto Kekäläinen <otto@seravo.fi>
15 lines
270 B
Bash
15 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
|
|
)
|