Add build:info to check builder

This commit is contained in:
David Heinemeier Hansson
2023-01-13 10:24:23 +01:00
parent 7e764cbcd9
commit a1fc01639e

View File

@@ -40,5 +40,12 @@ namespace :mrsk do
execute *MRSK.builder.remove
end
end
desc "Show the name of the configured builder"
task :info do
run_locally do
puts "Builder: #{MRSK.builder.name} (#{MRSK.builder.target.class.name})"
end
end
end
end