From 12dd37325c0e12ff1976185123dae0ee37914b10 Mon Sep 17 00:00:00 2001 From: f Date: Thu, 15 Jun 2023 13:45:31 -0300 Subject: [PATCH] fixup! Merge branch 'issue-13612' into 17.3.alpine.panel.sutty.nl --- app/models/deploy_local.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/deploy_local.rb b/app/models/deploy_local.rb index b7017018..9d87a6cb 100644 --- a/app/models/deploy_local.rb +++ b/app/models/deploy_local.rb @@ -15,7 +15,7 @@ class DeployLocal < Deploy def bundle(output: false) run %(bundle config set --local clean 'true'), output: output run %(bundle config set --local deployment 'true'), output: output if site.gemfile_lock_path? - run %(bundle config set --local path '#{gems_dir}'), output: output + run %(bundle config set --local path '#{site.bundle_path}'), output: output run %(bundle config set --local without 'test development'), output: output run %(bundle config set --local cache_all 'false'), output: output run %(bundle install), output: output