lib/multi_process/process.rb in multi_process-1.1.0 vs lib/multi_process/process.rb in multi_process-1.1.1
- old
+ new
@@ -188,10 +188,10 @@
def start_childprocess
env.each { |k, v| childprocess.environment[k.to_s] = v.to_s }
childprocess.cwd = dir
if clean_env?
- Bundler.with_clean_env { childprocess.start }
+ Bundler.with_original_env { childprocess.start }
else
childprocess.start
end
end
end