Skip to content

Commit

Permalink
Merge pull request #2 from ndavd/feat/improve-language-consistency
Browse files Browse the repository at this point in the history
feat(v1.1.1): improve language consistency
  • Loading branch information
ndavd authored Sep 4, 2024
2 parents de7985e + e5b3b5c commit 7ad5c07
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ $ go install github.com/ndavd/agevault@latest

```
lock/unlock directory with passphrase-protected identity file
usage: agevault [vault-name] lock|unlock|keygen
usage: agevault [directory-name] lock|unlock|keygen
```

Securing `my-vault/`:
Expand Down
8 changes: 4 additions & 4 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ import (
)

func Version() string {
return "v1.1.0"
return "v1.1.1"
}

func Usage() {
fmt.Printf("agevault %s", Version())
fmt.Println()
fmt.Println("lock/unlock directory with passphrase-protected identity file")
fmt.Println("usage: agevault [vault-name] lock|unlock|keygen")
fmt.Println("usage: agevault [directory-name] lock|unlock|keygen")
os.Exit(0)
}

Expand Down Expand Up @@ -186,7 +186,7 @@ func main() {
if err != nil {
errMsg(err)
}
fmt.Printf("%s SECURED with %s\n", vaultName, recipientString)
fmt.Printf("%s LOCKED with %s\n", vaultName, recipientString)
return
}

Expand All @@ -195,7 +195,7 @@ func main() {
if err != nil {
errMsg(err)
}
fmt.Printf("%s DECRYPTED\n", vaultName)
fmt.Printf("%s UNLOCKED\n", vaultName)
return
}

Expand Down

0 comments on commit 7ad5c07

Please sign in to comment.