diff options
| -rw-r--r-- | lib/leap_cli/commands/ca.rb | 6 | 
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/leap_cli/commands/ca.rb b/lib/leap_cli/commands/ca.rb index 3c5fc7d5..1c67ae67 100644 --- a/lib/leap_cli/commands/ca.rb +++ b/lib/leap_cli/commands/ca.rb @@ -281,11 +281,13 @@ module LeapCli; module Commands      if status == 'valid'        log 'authorized!', color: :green, style: :bold      elsif status == 'error' -      bail! :error, message +      bail! :error, message.inspect      elsif status == 'unauthorized' -      bail!(:unauthorized, message, color: :yellow, style: :bold) do +      bail!(:unauthorized, message.inspect, color: :yellow, style: :bold) do          log 'You must first run `leap cert register` to register the account key with letsencrypt.org'        end +    else +      bail!(:error, "unrecognized status: #{status.inspect}, #{message.inspect}")      end      log :fetching, "new certificate from letsencrypt.org"  | 
