mirror of
https://github.com/moby/moby.git
synced 2026-07-19 05:50:57 +00:00
8 lines
153 B
Bash
8 lines
153 B
Bash
#!/bin/sh
|
|
|
|
DEST=$1
|
|
|
|
if go build -o $DEST/docker-$VERSION -ldflags "$LDFLAGS" $BUILDFLAGS ./docker; then
|
|
echo "Created binary: $DEST/docker-$VERSION"
|
|
fi
|