Skip to content
Snippets Groups Projects
Commit db1075fd authored by Jack Nagel's avatar Jack Nagel
Browse files

Use ENV.update to restore removed variables

parent 71586d09
No related branches found
No related tags found
No related merge requests found
......@@ -583,9 +583,7 @@ class Formula
raise BuildError.new(self, cmd, args, $?)
ensure
f.close if f and not f.closed?
removed_ENV_variables.each do |key, value|
ENV[key] = value
end if removed_ENV_variables
ENV.update(removed_ENV_variables) if removed_ENV_variables
end
private
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment