Skip to content
This repository has been archived by the owner on Nov 19, 2018. It is now read-only.

Commit

Permalink
Fixed code style
Browse files Browse the repository at this point in the history
  • Loading branch information
KrauseFx committed Nov 11, 2015
1 parent c86b0d2 commit b57fe34
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/sigh/runner.rb
Original file line number Diff line number Diff line change
Expand Up @@ -121,11 +121,11 @@ def certificate_to_use
# Filter them
certificates = certificates.find_all do |c|
if Sigh.config[:cert_id]
next unless (c.id == Sigh.config[:cert_id].strip)
next unless c.id == Sigh.config[:cert_id].strip
end

if Sigh.config[:cert_owner_name]
next unless (c.owner_name.strip == Sigh.config[:cert_owner_name].strip)
next unless c.owner_name.strip == Sigh.config[:cert_owner_name].strip
end

true
Expand Down

0 comments on commit b57fe34

Please sign in to comment.