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

Use git checkout instead of co in Rakefile

The co alias may not available in every Git version so using the
full command is advised.
This commit is contained in:
ignisf 2013-01-06 08:58:08 +02:00
parent 433be139bf
commit d9f577cf4c

View file

@ -78,7 +78,7 @@ desc "clean up artifacts of the build"
task :clean do
sh "rm -rf pkg"
sh "git clean -df"
sh "cd #{V8_Source} && git co -f && git clean -dxf"
sh "cd #{V8_Source} && git checkout -f && git clean -dxf"
end
task :default => [:checkout, :compile, :spec]