mirror of
https://github.com/clearlinux/docker.git
synced 2026-09-01 02:35:04 +00:00
c89fa6645e
Docker-DCO-1.1-Signed-off-by: Guillaume J. Charmes <guillaume.charmes@docker.com> (github: creack)
7 lines
177 B
Bash
7 lines
177 B
Bash
#!/bin/bash
|
|
|
|
DEST=$1
|
|
|
|
go build -o $DEST/docker-$VERSION -ldflags "$LDFLAGS $LDFLAGS_STATIC" $BUILDFLAGS -tags "$BUILDTAGS" ./docker
|
|
echo "Created binary: $DEST/docker-$VERSION"
|