Refactoring miniosd and minios to a single binary minio

This commit is contained in:
Frederick F. Kautz IV 2014-11-02 14:33:53 -05:00
parent 631b3bbf2e
commit dca2f84bc9
4 changed files with 3 additions and 12 deletions

View file

@ -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

View file

@ -5,6 +5,6 @@ import (
)
func main() {
server := minios.Server{}
server := minio.Server{}
server.Start()
}

View file

@ -1,7 +0,0 @@
package main
import "fmt"
func main() {
fmt.Println("hello")
}

View file

@ -1,4 +1,4 @@
package minios
package minio
import (
"fmt"