Skip to content

Commit 1d626c0

Browse files
committed
🔨 Fix Rakefile when not using primary Gemfile
1 parent 3a132bd commit 1d626c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ begin
4242

4343
RSpec::Core::RakeTask.new(:spec)
4444
# This takes the place of `coverage` task when running as CI=true
45-
defaults << "spec" if Kettle::Soup::Cover::IS_CI
45+
defaults << "spec" if !defined(Kettle::Soup::Cover) || Kettle::Soup::Cover::IS_CI
4646
rescue LoadError
4747
desc("spec task stub")
4848
task(:spec) do

0 commit comments

Comments
 (0)