File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ $ go install github.com/ndavd/agevault@latest
35
35
36
36
```
37
37
lock/unlock directory with passphrase-protected identity file
38
- usage: agevault [vault -name] lock|unlock|keygen
38
+ usage: agevault [directory -name] lock|unlock|keygen
39
39
```
40
40
41
41
Securing ` my-vault/ ` :
Original file line number Diff line number Diff line change @@ -15,14 +15,14 @@ import (
15
15
)
16
16
17
17
func Version () string {
18
- return "v1.1.0 "
18
+ return "v1.1.1 "
19
19
}
20
20
21
21
func Usage () {
22
22
fmt .Printf ("agevault %s" , Version ())
23
23
fmt .Println ()
24
24
fmt .Println ("lock/unlock directory with passphrase-protected identity file" )
25
- fmt .Println ("usage: agevault [vault -name] lock|unlock|keygen" )
25
+ fmt .Println ("usage: agevault [directory -name] lock|unlock|keygen" )
26
26
os .Exit (0 )
27
27
}
28
28
@@ -186,7 +186,7 @@ func main() {
186
186
if err != nil {
187
187
errMsg (err )
188
188
}
189
- fmt .Printf ("%s SECURED with %s\n " , vaultName , recipientString )
189
+ fmt .Printf ("%s LOCKED with %s\n " , vaultName , recipientString )
190
190
return
191
191
}
192
192
@@ -195,7 +195,7 @@ func main() {
195
195
if err != nil {
196
196
errMsg (err )
197
197
}
198
- fmt .Printf ("%s DECRYPTED \n " , vaultName )
198
+ fmt .Printf ("%s UNLOCKED \n " , vaultName )
199
199
return
200
200
}
201
201
You can’t perform that action at this time.
0 commit comments