mirror of
https://github.com/docker/docs.git
synced 2026-03-27 14:28:47 +07:00
15 lines
245 B
Bash
15 lines
245 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
# This script exists as backwards compatibility for CI
|
|
(
|
|
DEST="${DEST}-client"
|
|
ABS_DEST="${ABS_DEST}-client"
|
|
. hack/make/binary-client
|
|
)
|
|
(
|
|
DEST="${DEST}-daemon"
|
|
ABS_DEST="${ABS_DEST}-daemon"
|
|
. hack/make/binary-daemon
|
|
)
|