From 7192977500463033e38d21110f71c4efc9e293eb Mon Sep 17 00:00:00 2001 From: Charles Lowell Date: Fri, 3 Jul 2015 15:35:14 -0500 Subject: [PATCH] update binary builders --- Rakefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Rakefile b/Rakefile index 5aca8b8..4f8da35 100644 --- a/Rakefile +++ b/Rakefile @@ -57,9 +57,9 @@ namespace :build do arch_dir = Pathname(__FILE__).dirname.join("release/#{arch}") Dir.chdir(arch_dir) do sh "vagrant up" - sh "vagrant ssh -c 'cd /vagrant && rm -rf libv8 && git clone /libv8/.git libv8'" + sh "vagrant ssh -c 'cd /vagrant && rm -rf libv8 && git clone --recursive /libv8/.git libv8'" sh "vagrant ssh -c 'cd /vagrant/libv8 && bundle install --path vendor/bundle'" - sh "vagrant ssh -c 'cd /vagrant/libv8 && bundle exec rake checkout binary'" + sh "vagrant ssh -c 'cd /vagrant/libv8 && bundle exec rake binary'" sh "vagrant ssh -c 'cp /vagrant/libv8/pkg/*.gem /vagrant'" end end