Merge pull request #6032 from jbampton/update-rake-task-clean

Rake: update task clean to remove `bin` and `build` folders
This commit is contained in:
Yukihiro "Matz" Matsumoto
2023-07-31 10:42:01 +09:00
committed by GitHub
+2 -4
View File
@@ -53,10 +53,8 @@ task :build => MRuby.targets.flat_map{|_, build| build.products}
desc "clean all built and in-repo installed artifacts"
task :clean do
MRuby.each_target do |build|
rm_rf build.build_dir
rm_f build.products
end
rm_rf "#{MRUBY_ROOT}/bin"
rm_rf "#{MRUBY_ROOT}/build"
puts "Cleaned up target build directory"
end