fastlane/lib/fastlane/actions/lcov.rb in fastlane-2.74.1 vs fastlane/lib/fastlane/actions/lcov.rb in fastlane-2.75.0.beta.20180109010003
- old
+ new
@@ -1,9 +1,9 @@
module Fastlane
module Actions
class LcovAction < Action
def self.is_supported?(platform)
- [:ios, :mac].include? platform
+ [:ios, :mac].include?(platform)
end
def self.run(options)
unless Helper.test?
UI.user_error!("lcov not installed, please install using `brew install lcov`") if `which lcov`.length == 0