summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2019-08-03 07:09:59 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2019-08-14 22:52:59 +0900
commitb235225814651fb0ea0ad6dde1c98b21489bf81a (patch)
tree0530521c5b933521b4a47648dc4d99198b3961c3
parent0cf761980a61d0a4498c80bbf5e187e41e2e13b9 (diff)
downloadbundler-b235225814651fb0ea0ad6dde1c98b21489bf81a.tar.gz
Fixed up 365ee22d73ec73c119a842de271504e04bed6f45
-rw-r--r--spec/commands/exec_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/commands/exec_spec.rb b/spec/commands/exec_spec.rb
index 67c2ce6268..bb13b1b086 100644
--- a/spec/commands/exec_spec.rb
+++ b/spec/commands/exec_spec.rb
@@ -299,7 +299,7 @@ RSpec.describe "bundle exec" do
G
rubylib = ENV["RUBYLIB"]
- rubylib = rubylib.to_s.split(File::PATH_SEPARATOR).unshift bundler_path
+ rubylib = rubylib.to_s.split(File::PATH_SEPARATOR).unshift bundler_path.to_s
rubylib = rubylib.uniq.join(File::PATH_SEPARATOR)
bundle "exec 'echo $RUBYLIB'"