summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xscripts/gitaly-test-spawn4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/gitaly-test-spawn b/scripts/gitaly-test-spawn
index 6e19269c058..06c29cc4690 100755
--- a/scripts/gitaly-test-spawn
+++ b/scripts/gitaly-test-spawn
@@ -4,7 +4,7 @@ require 'rubygems'
require 'bundler'
gitaly_dir = 'tmp/tests/gitaly'
-gitaly_ruby_bundle_path = File.expand_path(File.join('..', gitaly_dir, 'ruby/vendor/ruby/2.3.0'), __dir__)
+gitaly_ruby_bundle_path = File.expand_path(File.join('..', gitaly_dir, 'ruby/vendor'), __dir__)
puts "Gem.path: #{Gem.path.inspect}"
puts "ENV['BUNDLE_GEMFILE']: #{ENV['BUNDLE_GEMFILE'].inspect}"
@@ -37,7 +37,7 @@ end
env = {
'HOME' => File.expand_path('tmp/tests'),
- 'GEM_PATH' => gitaly_ruby_bundle_path
+ 'BUNDLE_PATH' => gitaly_ruby_bundle_path
}
puts "env:"