Merge branch 'ssh-git' into staging

This commit is contained in:
f 2021-05-26 16:43:07 -03:00
commit 0b9d178d90

View file

@ -161,12 +161,12 @@ class Site
# @return [String]
def public_key
@public_key ||= Rails.root.join('.ssh', 'id_ed25519.pub')
@public_key ||= Rails.root.join('.ssh', 'id_ed25519.pub').to_s
end
# @return [String]
def private_key
@private_key ||= Rails.root.join('.ssh', 'id_ed25519')
@private_key ||= Rails.root.join('.ssh', 'id_ed25519').to_s
end
def relativize(file)