Skip to content

Commit

Permalink
Fix native install tasks failing
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
stanhu committed Jul 17, 2023
1 parent a1a9ec6 commit d023bf2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -142,5 +142,4 @@ task "set-version-to-timestamp" do
puts "NOTE: wrote version as \"#{fake_version}\""
end

task :spec => :compile
task :default => :spec
task default: [:compile, :spec]

0 comments on commit d023bf2

Please sign in to comment.