Skip to content

Commit

Permalink
rm_f so we can clean even if the file is already missing.
Browse files Browse the repository at this point in the history
  • Loading branch information
abscondment committed Nov 8, 2012
1 parent d27c181 commit fd25564
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ desc "clean up build artifacts"
task :clean do
ant.delete :quiet => true, :dir => 'build'
ant.delete :quiet => true, :dir => 'dist'
rm 'javalib/mirah-bootstrap.jar'
rm 'javalib/mirah-builtins.jar'
rm_f 'javalib/mirah-bootstrap.jar'
rm_f 'javalib/mirah-builtins.jar'
end
task :compile => [:init, :bootstrap] do
Expand Down

1 comment on commit fd25564

@baroquebobcat
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks.

Please sign in to comment.