From aadb5b701482acb7ea242492a5b4cbe98ed5ea20 Mon Sep 17 00:00:00 2001 From: hayaokimura Date: Thu, 14 Aug 2025 18:25:00 +0900 Subject: [PATCH] bundle exec rake setup was failing due to submodule not being updated, so I fixed it. --- Rakefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Rakefile b/Rakefile index 61a2765..9302c34 100644 --- a/Rakefile +++ b/Rakefile @@ -23,7 +23,7 @@ task :install_picoruby => [PICORUBY_DIR, MRUBYC_DIR] directory PICORUBY_DIR do sh "git clone https://github.com/picoruby/picoruby.git" FileUtils.cd("picoruby") do - sh "git checkout use-builtin-Task" + sh "git submodule update --init --recursive" end FileUtils.cd("lib") do sh "bundle install" @@ -34,7 +34,7 @@ directory MRUBYC_DIR do FileUtils.cd("picoruby/mrbgems/picoruby-mrubyc/lib") do sh "git clone https://github.com/mrubyc/mrubyc.git" FileUtils.cd("mrubyc") do - sh "git checkout fix-picoruby-irb" + sh "git submodule update --init --recursive" end end end