sigh/lib/sigh/runner.rb in fastlane-2.170.0 vs sigh/lib/sigh/runner.rb in fastlane-2.171.0

- old
+ new

@@ -325,10 +325,10 @@ if certificates.count > 1 && !Sigh.config[:development] UI.important("Found more than one code signing identity. Choosing the first one. Check out `fastlane sigh --help` to see all available options.") UI.important("Available Code Signing Identities for current filters:") certificates.each do |c| - str = ["\t- Name:", c.display_name, "- ID:", c.id + " - Expires", c.expires.strftime("%d/%m/%Y")].join(" ") + str = ["\t- Name:", c.display_name, "- ID:", c.id + " - Expires", Time.parse(c.expiration_date).strftime("%Y-%m-%d")].join(" ") UI.message(str.green) end end if certificates.count == 0