Skip to content

Commit

Permalink
Added clean_bin task to mruby rake namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
IceDragon200 committed Jan 20, 2016
1 parent db3e2e4 commit dd1eedf
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tasks/mruby.rake
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ namespace :mruby do
FileUtils::Verbose.rm_rf(File.join(dir, 'build/mrbgems'))
end

task :clean_bin do
FileUtils::Verbose.rm_rf(File.join(dir, 'build/host/lib'))
FileUtils::Verbose.rm_rf(File.join(dir, 'build/host/bin'))
FileUtils::Verbose.rm_rf(File.join(dir, 'build/host/mrblib'))
end

task :deep_clean do
FileUtils::Verbose.rm_rf(File.join(dir, 'build'))
end
Expand Down

0 comments on commit dd1eedf

Please sign in to comment.