Skip to content

Commit bb7ca35

Browse files
authored
Merge pull request #24 from hayaokimura/add-submodule-update
bundle exec rake setup was failing due to submodule not being updated…
2 parents 7127e0c + aadb5b7 commit bb7ca35

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Rakefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ task :install_picoruby => [PICORUBY_DIR, MRUBYC_DIR]
2323
directory PICORUBY_DIR do
2424
sh "git clone https://github.com/picoruby/picoruby.git"
2525
FileUtils.cd("picoruby") do
26-
sh "git checkout use-builtin-Task"
26+
sh "git submodule update --init --recursive"
2727
end
2828
FileUtils.cd("lib") do
2929
sh "bundle install"
@@ -34,7 +34,7 @@ directory MRUBYC_DIR do
3434
FileUtils.cd("picoruby/mrbgems/picoruby-mrubyc/lib") do
3535
sh "git clone https://github.com/mrubyc/mrubyc.git"
3636
FileUtils.cd("mrubyc") do
37-
sh "git checkout fix-picoruby-irb"
37+
sh "git submodule update --init --recursive"
3838
end
3939
end
4040
end

0 commit comments

Comments
 (0)