Skip to content

Commit

Permalink
modified: vault.go
Browse files Browse the repository at this point in the history
  • Loading branch information
nbari committed Feb 2, 2017
1 parent 088564e commit 991ee72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vault.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ func New(k, u, o, v string) (*vault, error) {
return nil, err
}
} else if !cache.IsFile(keyPath) {
return nil, fmt.Errorf("SSH key not found or unable to read")
return nil, fmt.Errorf("SSH key %q not found or unable to read", keyPath)
}
if o == "create" {
if cache.IsFile(v) {
Expand Down

0 comments on commit 991ee72

Please sign in to comment.