Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorLin Jen-Shin <godfat@godfat.org>2018-01-23 20:21:57 +0300
committerLin Jen-Shin <godfat@godfat.org>2018-01-26 16:24:57 +0300
commitac3d56e0ffde27cdcf6515a9af4930324ebdf151 (patch)
tree7f3d77072d1ba92de9322a3abda2c29c0dd9464a /lib
parent4376be84ce18cde22febc50356ad254b507eef1b (diff)
Pass BUNDLE_PATH to install to the same path for test
Diffstat (limited to 'lib')
-rw-r--r--lib/tasks/gitlab/gitaly.rake6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/tasks/gitlab/gitaly.rake b/lib/tasks/gitlab/gitaly.rake
index a2e68c0471b..aece8893974 100644
--- a/lib/tasks/gitlab/gitaly.rake
+++ b/lib/tasks/gitlab/gitaly.rake
@@ -21,7 +21,11 @@ namespace :gitlab do
_, status = Gitlab::Popen.popen(%w[which gmake])
command << (status.zero? ? 'gmake' : 'make')
- command << 'BUNDLE_FLAGS=--no-deployment' if Rails.env.test?
+ if Rails.env.test?
+ command.push(
+ 'BUNDLE_FLAGS=--no-deployment',
+ "BUNDLE_PATH=#{Bundler.bundle_path}")
+ end
Gitlab::SetupHelper.create_gitaly_configuration(args.dir)
Dir.chdir(args.dir) do