Skip to content

Commit 5b61ef7

Browse files
committed
Fix native install tasks failing
Previously sence `rake spec` required the `compile` step, `scripts/test-gem-install` failed because `extconf.rb` was removed. Fix this by making the default task depend on the `compile` task, but the `spec` task independent of the `compile` task.
1 parent c84455e commit 5b61ef7

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Rakefile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,5 +142,4 @@ task "set-version-to-timestamp" do
142142
puts "NOTE: wrote version as \"#{fake_version}\""
143143
end
144144

145-
task :spec => :compile
146-
task :default => :spec
145+
task default: [:compile, :spec]

0 commit comments

Comments
 (0)