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:
parent
433be139bf
commit
d9f577cf4c
1 changed files with 1 additions and 1 deletions
2
Rakefile
2
Rakefile
|
@ -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]
|
||||
|
|
Loading…
Add table
Reference in a new issue