Skip to content

Commit

Permalink
Include newline on end of comment within private key
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisroberts committed Oct 2, 2023
1 parent 00c1f9c commit c8fc8b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/vagrant/util/keypair.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class Ed25519
# Header of private key file content
PRIVATE_KEY_START = "-----BEGIN OPENSSH PRIVATE KEY-----\n".freeze
# Footer of private key file content
PRIVATE_KEY_END = "-----END OPENSSH PRIVATE KEY-----".freeze
PRIVATE_KEY_END = "-----END OPENSSH PRIVATE KEY-----\n".freeze

# Encodes given string
#
Expand Down

0 comments on commit c8fc8b3

Please sign in to comment.