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

Clean even files in .gitignore

This commit is contained in:
ignisf 2014-06-17 15:16:02 +03:00
parent 485fb8d315
commit 8b2de7428b

View file

@ -52,13 +52,13 @@ end
task :clean_submodules do
sh "git submodule --quiet foreach git reset --hard"
sh "git submodule --quiet foreach git clean -df"
sh "git submodule --quiet foreach git clean -dxf"
end
desc "clean up artifacts of the build"
task :clean => [:clean_submodules] do
sh "rm -rf pkg"
sh "git clean -df"
sh "git clean -dxf"
end
task :default => [:compile, :spec]