Skip to content

Commit 56fc6a3

Browse files
committed
fix exit status code, edit readme
1 parent be412bf commit 56fc6a3

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.github/workflows/go.yml renamed to .github/workflows/build.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Go
1+
name: build
22

33
on:
44
push:
@@ -16,7 +16,6 @@ jobs:
1616
with:
1717
fetch-depth: 0
1818

19-
2019
- name: Set up Go
2120
uses: actions/setup-go@v2
2221
with:

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
# ringo
22

3+
![](https://img.shields.io/github/v/release/enrichman/ringo)
4+
![](https://github.com/enrichman/ringo/actions/workflows/build.yml/badge.svg)
5+
36
![ringo.png](assets/ringo.png)
47

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

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

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ func main() {
2323

2424
if *showVersion {
2525
fmt.Print(Version)
26-
os.Exit(1)
26+
os.Exit(0)
2727
}
2828

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

0 commit comments

Comments
 (0)