788a1fc558
Upstream-commit: 06d0843a61843e6b16a56d518e21032a5652098b Component: engine
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
|