mirror of
https://github.com/docker/cli.git
synced 2026-01-13 18:22:35 +03:00
8 lines
141 B
Bash
8 lines
141 B
Bash
#!/bin/sh
|
|
|
|
DEST=$1
|
|
|
|
go build -o $DEST/docker-$VERSION -ldflags "$LDFLAGS" $BUILDFLAGS ./docker
|
|
|
|
echo "Created binary: $DEST/docker-$VERSION"
|