We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6d662cb + 8080be7 commit 73be078Copy full SHA for 73be078
lib/bolt/transport/local/connection.rb
@@ -73,7 +73,9 @@ def execute(command)
73
# Only do this if bundled-ruby is set to false, not nil
74
ruby_env_vars = if target.transport_config['bundled-ruby'] == false
75
RUBY_ENV_VARS.each_with_object({}) do |e, acc|
76
- acc[e] = ENV["BOLT_ORIG_#{e}"] if ENV["BOLT_ORIG_#{e}"]
+ if ENV["BOLT_ORIG_#{e}"] && !ENV["BOLT_ORIG_#{e}"].empty?
77
+ acc[e] = ENV["BOLT_ORIG_#{e}"]
78
+ end
79
end
80
81
0 commit comments