mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
7 lines
141 B
Bash
7 lines
141 B
Bash
#!/bin/sh
|
|
|
|
DEST=$1
|
|
|
|
if go build -o $DEST/docker-$VERSION -ldflags "$LDFLAGS" ./docker; then
|
|
echo "Created binary: $DEST/docker-$VERSION"
|
|
fi
|