mirror of https://github.com/minio/minio.git
Refactoring miniosd and minios to a single binary minio
This commit is contained in:
parent
631b3bbf2e
commit
dca2f84bc9
4
Makefile
4
Makefile
|
@ -14,9 +14,7 @@ stage_build:
|
|||
|
||||
|
||||
build: stage_build
|
||||
go install github.com/minios/minios/minios
|
||||
go install github.com/minios/minios/miniosd
|
||||
cp tmp/gopath/bin/* bin/
|
||||
go install github.com/minios/minios/minio
|
||||
|
||||
clean:
|
||||
rm -rf tmp bin
|
||||
|
|
|
@ -5,6 +5,6 @@ import (
|
|||
)
|
||||
|
||||
func main() {
|
||||
server := minios.Server{}
|
||||
server := minio.Server{}
|
||||
server.Start()
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
package main
|
||||
|
||||
import "fmt"
|
||||
|
||||
func main() {
|
||||
fmt.Println("hello")
|
||||
}
|
Loading…
Reference in New Issue