Migrating minio server build to do 'go run make.go' style like mc

This commit is contained in:
Harshavardhana
2015-06-16 20:20:59 -07:00
parent 4998907835
commit 8bde4d4e34
8 changed files with 234 additions and 123 deletions

View File

@@ -198,7 +198,6 @@ func (a *App) Run(arguments []string) (err error) {
// RunAndExitOnError - Another entry point to the cli app, takes care of passing arguments and error handling
func (a *App) RunAndExitOnError() {
if err := a.Run(os.Args); err != nil {
fmt.Fprintln(os.Stderr, err)
os.Exit(1)
}
}