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/spec
diff options
context:
space:
mode:
authorJacob Vosmaer <jacob@gitlab.com>2017-08-08 16:34:29 +0300
committerJacob Vosmaer <jacob@gitlab.com>2017-08-08 16:34:29 +0300
commit5684528081d0ffef9f128cd1b102889f23075dd0 (patch)
tree41ade8daf940e90c0c5143435856d52869a13946 /spec
parent5b08d59f07fc53c1e34819fac20352119d5343e6 (diff)
Unset BUNDLE_GEMFILE when installing Gitaly
Diffstat (limited to 'spec')
-rw-r--r--spec/tasks/gitlab/gitaly_rake_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/tasks/gitlab/gitaly_rake_spec.rb b/spec/tasks/gitlab/gitaly_rake_spec.rb
index cc932a4ec4c..871902a131b 100644
--- a/spec/tasks/gitlab/gitaly_rake_spec.rb
+++ b/spec/tasks/gitlab/gitaly_rake_spec.rb
@@ -41,7 +41,7 @@ describe 'gitlab:gitaly namespace rake task' do
end
describe 'gmake/make' do
- let(:command_preamble) { %w[/usr/bin/env -u RUBYOPT] }
+ let(:command_preamble) { %w[/usr/bin/env -u RUBYOPT -u BUNDLE_GEMFILE] }
before(:all) do
@old_env_ci = ENV.delete('CI')