mirror of
https://github.com/docker/docs.git
synced 2026-03-27 22:38:54 +07:00
8 lines
129 B
Bash
8 lines
129 B
Bash
#!/bin/sh
|
|
|
|
DEST=$1
|
|
|
|
go build -o $DEST/docker-$VERSION -ldflags "$LDFLAGS" ./docker
|
|
|
|
echo "Created binary: $DEST/docker-$VERSION"
|