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

Add new submodules to the clean task

This commit is contained in:
ignisf 2014-06-14 12:06:53 +03:00
parent 108c3c7f26
commit 68fca9a7bf

View file

@ -73,8 +73,8 @@ desc "clean up artifacts of the build"
task :clean do task :clean do
sh "rm -rf pkg" sh "rm -rf pkg"
sh "git clean -df" sh "git clean -df"
sh "cd #{V8_Source} && git checkout -f && git clean -dxf" sh "git submodule foreach git reset --hard"
sh "cd #{GYP_Source} && git checkout -f && git clean -dxf" sh "git submodule foreach git clean -df"
end end
desc "build a binary on heroku (you must have vulcan configured for this)" desc "build a binary on heroku (you must have vulcan configured for this)"