Remove unused utils/homebrew_vars.

This commit is contained in:
Mike McQuaid 2017-02-26 20:35:50 +00:00
parent 6f5913ccdd
commit 9ce757b339

View File

@ -1,11 +0,0 @@
#!/usr/bin/env ruby
ENV.keys.each do |key|
if key =~ /^HOMEBREW.*/
# Remove any HOMEBREW.* vars containing white-space which causes a problem for "env -i" command via string.
#
# (Any user supplied HOMEBREW.* vars with valid white-space need to be hard-coded in 'bin/brew')
#
puts "#{key}=#{ENV[key]}" unless ENV[key].split(' ').length > 1
end
end