mirror of
https://github.com/nishiki/manage-password.git
synced 2024-11-27 07:33:05 +00:00
minor fix for add key pub
This commit is contained in:
parent
ad1713edcb
commit
7759c3e1eb
2 changed files with 3 additions and 1 deletions
|
@ -140,7 +140,7 @@ class MPW
|
|||
# Add public key
|
||||
# args: key -> new public key
|
||||
def add_key(key)
|
||||
data = GPGME::Key.export(key).read
|
||||
data = GPGME::Key.export(key, armor: true).read
|
||||
|
||||
if data.to_s.empty?
|
||||
raise I18n.t('error.export_key')
|
||||
|
|
|
@ -190,6 +190,8 @@ class Cli
|
|||
def add_key(key)
|
||||
@mpw.add_key(key)
|
||||
@mpw.write_data
|
||||
|
||||
puts "#{I18n.t('key.add.valid')}".green
|
||||
rescue Exception => e
|
||||
puts "#{I18n.t('display.error')} #13: #{e}".red
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue