mirror of https://github.com/minio/minio.git
7 lines
151 B
Bash
7 lines
151 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
echo -n "Making official release binaries.. "
|
||
|
export MINIO_RELEASE=OFFICIAL
|
||
|
make 1>/dev/null
|
||
|
echo "Binaries built at ${GOPATH}/bin/minio"
|