Skip to content

Commit

Permalink
fix exit status code, edit readme
Browse files Browse the repository at this point in the history
  • Loading branch information
enrichman committed May 7, 2021
1 parent be412bf commit 56fc6a3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/go.yml → .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Go
name: build

on:
push:
Expand All @@ -16,7 +16,6 @@ jobs:
with:
fetch-depth: 0


- name: Set up Go
uses: actions/setup-go@v2
with:
Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
# ringo

![](https://img.shields.io/github/v/release/enrichman/ringo)
![](https://github.com/enrichman/ringo/actions/workflows/build.yml/badge.svg)

![ringo.png](assets/ringo.png)

Ringo is a wrapper written in Go around `biscuit`.
Ringo is a wrapper written in Go around [`biscuit`](https://github.com/dcoker/biscuit).

It can be used to select and decrypt the secrets in your project.

Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ func main() {

if *showVersion {
fmt.Print(Version)
os.Exit(1)
os.Exit(0)
}

if _, err := os.Open(secretsFilename); err != nil {
Expand Down

0 comments on commit 56fc6a3

Please sign in to comment.