Merge pull request #6 from fkautz/pr_out_refactoring_miniosd_and_minios_to_a_single_binary_minio

Refactoring miniosd and minios to a single binary minio
This commit is contained in:
Harshavardhana 2014-11-02 11:35:00 -08:00
commit a5b7ff1175
4 changed files with 3 additions and 12 deletions

View File

@ -14,9 +14,7 @@ stage_build:
build: stage_build build: stage_build
go install github.com/minios/minios/minios go install github.com/minios/minios/minio
go install github.com/minios/minios/miniosd
cp tmp/gopath/bin/* bin/
clean: clean:
rm -rf tmp bin rm -rf tmp bin

View File

@ -5,6 +5,6 @@ import (
) )
func main() { func main() {
server := minios.Server{} server := minio.Server{}
server.Start() 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 ( import (
"fmt" "fmt"