Merge pull request #6038 from dearblue/revert-6032-update-rake-task-clean

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