Skip to content

Commit

Permalink
Merge pull request #127 from Venafi/fix-no-csr-output-pem
Browse files Browse the repository at this point in the history
CSR not being output when using --format pem
  • Loading branch information
rvelaVenafi authored Aug 5, 2020
2 parents 59e0e22 + c9d2825 commit 5f12d44
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions cmd/vcert/result_writer.go
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ func (o *Output) Format(c *Config) ([]byte, error) {
res += o.PrivateKey
default:
res += o.Certificate
res += o.CSR
res += o.PrivateKey
res += strings.Join(o.Chain, "")
}
Expand Down

0 comments on commit 5f12d44

Please sign in to comment.