From dafd1f02d1f75b8d4c67bb993b250bcb13411a24 Mon Sep 17 00:00:00 2001 From: Toshimaru Date: Sun, 28 Sep 2025 10:12:38 +0900 Subject: [PATCH] chore: Remove --path vendor/bundle option it works without `path` option --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 174cdaf27c..bd5d6f60f4 100644 --- a/Rakefile +++ b/Rakefile @@ -73,7 +73,7 @@ def generate_rails_rdoc gemfile.gsub!(/"sdoc".*$/, %("sdoc", github: "toshimaru/sdoc", branch: "#{MY_SDOC_BRANCH}")) File.write('Gemfile', gemfile) - sh 'bundle install --path vendor/bundle && bundle update sdoc' + sh 'bundle install && bundle update sdoc' rm_rf 'doc' sh 'bundle exec rake rdoc' end