1
0
Fork 0
mirror of https://github.com/rubyjs/therubyracer synced 2023-03-27 23:21:42 -04:00

clean up the clean task.

This commit is contained in:
Charles Lowell 2010-06-07 20:08:22 +03:00
parent 81b69d742a
commit fa093126a0

View file

@ -33,10 +33,10 @@ task :gemspec => :clean do
end end
task :clean do task :clean do
sh "rm -f ext/v8/Makefile"
sh "rm -rf ext/v8/v8.bundle"
sh "rm -rf pkg" sh "rm -rf pkg"
sh "rm -rf *.gem" sh "rm -rf *.gem"
sh "rm -rf ext/v8/Makefile"
sh "rm -rf ext/v8/*.bundle ext/v8/*.so"
sh "rm -rf lib/v8/*.bundle lib/v8/*.so" sh "rm -rf lib/v8/*.bundle lib/v8/*.so"
end end