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
diff options
context:
space:
mode:
authorJacob Vosmaer <jacob@gitlab.com>2018-05-07 16:37:43 +0300
committerJacob Vosmaer <jacob@gitlab.com>2018-05-07 16:37:43 +0300
commit4bbe98d9f9677f9fd837153de204d18b688d9612 (patch)
tree95aae54c87e074cb8251adc3a5044cb402a22a36
parent666aba069a47d094cc903becebda61d2525b930a (diff)
Unset BUNDLE_GEMFIL
-rwxr-xr-xscripts/gitaly-test-spawn3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/gitaly-test-spawn b/scripts/gitaly-test-spawn
index 9730d530363..7b1a99e6a7f 100755
--- a/scripts/gitaly-test-spawn
+++ b/scripts/gitaly-test-spawn
@@ -2,7 +2,8 @@
gitaly_dir = 'tmp/tests/gitaly'
env = { 'HOME' => File.expand_path('tmp/tests'),
- 'GEM_PATH' => Gem.path.join(':') }
+ 'GEM_PATH' => Gem.path.join(':'),
+ 'BUNDLE_GEMFILE' => nil }
args = %W[#{gitaly_dir}/gitaly #{gitaly_dir}/config.toml]
spawn('sleep 1; tail -f log/gitaly-test.log')