1
0
Fork 0
mirror of https://github.com/ms-ati/docile synced 2023-03-27 23:21:52 -04:00

Fix Rubocop Style/FetchEnvVar

This commit is contained in:
Marc Siegel 2022-04-23 16:02:51 -04:00
parent e91f2a073c
commit 75b66bec6a

View file

@ -10,7 +10,7 @@ group :test do
gem "simplecov", require: false
# CI-only test dependencies go here
if ENV["CI"] == "true"
if ENV.fetch("CI", nil) == "true"
gem "simplecov-cobertura", require: false, group: "test"
end
end