From ce85e3b3b57d29236a6ff1bcc7809f65e9e18867 Mon Sep 17 00:00:00 2001 From: Shaun Jackman Date: Tue, 12 Dec 2017 09:27:06 -0800 Subject: Remove with_system_path The method with_system_path is no longer needed, since environment filtering uses a default PATH. --- Library/Homebrew/utils.rb | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'Library/Homebrew/utils.rb') diff --git a/Library/Homebrew/utils.rb b/Library/Homebrew/utils.rb index b592b2064..3ea472c58 100644 --- a/Library/Homebrew/utils.rb +++ b/Library/Homebrew/utils.rb @@ -267,12 +267,6 @@ module Homebrew # rubocop:enable Style/GlobalVars end -def with_system_path - with_env(PATH: PATH.new("/usr/bin", "/bin")) do - yield - end -end - def with_homebrew_path with_env(PATH: PATH.new(ENV["HOMEBREW_PATH"])) do yield @@ -376,7 +370,7 @@ end # GZips the given paths, and returns the gzipped paths def gzip(*paths) paths.collect do |path| - with_system_path { safe_system "gzip", path } + safe_system "gzip", path Pathname.new("#{path}.gz") end end -- cgit v1.2.3