diff options
author | elijah <elijah@riseup.net> | 2015-05-04 16:17:01 -0700 |
---|---|---|
committer | elijah <elijah@riseup.net> | 2015-05-04 16:17:01 -0700 |
commit | 6b35bbbe1a9909c737c1cd53edcfc47af0ad063c (patch) | |
tree | a28f7c2d497f3d4b0ed7cd62551a90d1b6dc4bdc /lib | |
parent | b4d0e0e3b4bfa2436e3f76a591d5639819a4853b (diff) |
make gpgme optional
Diffstat (limited to 'lib')
-rw-r--r-- | lib/leap_cli/commands/user.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/leap_cli/commands/user.rb b/lib/leap_cli/commands/user.rb index 6c33878..480e9a9 100644 --- a/lib/leap_cli/commands/user.rb +++ b/lib/leap_cli/commands/user.rb @@ -100,9 +100,9 @@ module LeapCli # def pick_pgp_key begin - return unless `which gpg`.strip.any? require 'gpgme' rescue LoadError + log "Skipping OpenPGP setup because gpgme is not installed." return end |