Skip to content

Commit

Permalink
missing commits
Browse files Browse the repository at this point in the history
  • Loading branch information
sio4 committed Apr 30, 2022
1 parent 2fc48c4 commit 7331912
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@
[![Coverage Status](https://coveralls.io/repos/github/hyeoncheon/bogo/badge.svg?branch=main)](https://coveralls.io/github/hyeoncheon/bogo?branch=main)
[![Maintainability](https://api.codeclimate.com/v1/badges/1a36b1292948783341d0/maintainability)](https://codeclimate.com/github/hyeoncheon/bogo/maintainability)
[![Go Report Card](https://goreportcard.com/badge/github.com/hyeoncheon/bogo)](https://goreportcard.com/report/github.com/hyeoncheon/bogo)
[![Go Reference](https://pkg.go.dev/badge/github.com/hyeoncheon/bogo.svg)](https://pkg.go.dev/github.com/hyeoncheon/bogo)
[![Go Reference](https://img.shields.io/badge/go-reference-blue)](https://pkg.go.dev/github.com/hyeoncheon/bogo)

[![GitHub license](https://img.shields.io/github/license/hyeoncheon/bogo)](https://github.com/hyeoncheon/bogo/blob/main/LICENSE.md)


Bogo is an event collector and reporter for the Hyeoncheon project.cw
It will be a successor of Kyeong which was ruby based event collector.
Expand Down
4 changes: 2 additions & 2 deletions cmd/bogo/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,13 @@ func main() {

if showVersion {
fmt.Println("bogo", bogo.Version)
os.Exit(1)
os.Exit(0)
}

if showHelp {
fmt.Println("bogo", bogo.Version)
getopt.Usage()
os.Exit(1)
os.Exit(0)
}

c, _ := common.NewDefaultContext(&opts)
Expand Down
6 changes: 6 additions & 0 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,9 @@ lint-hard:

test:
go test -race -coverprofile=coverage.txt -covermode=atomic ./...

build:
go build -o bogo ./cmd/bogo/
strip bogo
./bogo -v version

0 comments on commit 7331912

Please sign in to comment.