Merge pull request #3566 from sjackman/path

Do not specify absolute paths to utilities
This commit is contained in:
Mike McQuaid 2017-12-13 08:56:31 +00:00 committed by GitHub
commit 9a0981e0eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 16 additions and 24 deletions

View File

@ -85,7 +85,7 @@ case "$HOMEBREW_SYSTEM" in
Linux) HOMEBREW_LINUX="1" ;;
esac
HOMEBREW_CURL="/usr/bin/curl"
HOMEBREW_CURL="curl"
if [[ -n "$HOMEBREW_MACOS" ]]
then
HOMEBREW_PROCESSOR="$(uname -p)"
@ -136,7 +136,7 @@ else
fi
fi
HOMEBREW_USER_AGENT="$HOMEBREW_PRODUCT/$HOMEBREW_USER_AGENT_VERSION ($HOMEBREW_SYSTEM; $HOMEBREW_PROCESSOR $HOMEBREW_OS_USER_AGENT_VERSION)"
HOMEBREW_CURL_VERSION="$("$HOMEBREW_CURL" --version 2>/dev/null | head -n1 | /usr/bin/awk '{print $1"/"$2}')"
HOMEBREW_CURL_VERSION="$("$HOMEBREW_CURL" --version 2>/dev/null | head -n1 | awk '{print $1"/"$2}')"
HOMEBREW_USER_AGENT_CURL="$HOMEBREW_USER_AGENT $HOMEBREW_CURL_VERSION"
# Declared in bin/brew

View File

@ -217,12 +217,12 @@ class AbstractFileDownloadStrategy < AbstractDownloadStrategy
def stage
case type = cached_location.compression_type
when :zip
with_system_path { quiet_safe_system "unzip", "-qq", cached_location }
quiet_safe_system "unzip", "-qq", cached_location
chdir
when :gzip_only
with_system_path { buffered_write("gunzip") }
buffered_write "gunzip"
when :bzip2_only
with_system_path { buffered_write("bunzip2") }
buffered_write "bunzip2"
when :gzip, :bzip2, :xz, :compress, :tar
tar_flags = "x"
if type == :gzip
@ -233,16 +233,14 @@ class AbstractFileDownloadStrategy < AbstractDownloadStrategy
tar_flags << "J"
end
tar_flags << "f"
with_system_path do
if type == :xz && DependencyCollector.tar_needs_xz_dependency?
pipe_to_tar(xzpath)
pipe_to_tar xzpath
else
safe_system "tar", tar_flags, cached_location
end
end
chdir
when :lzip
with_system_path { pipe_to_tar(lzippath) }
pipe_to_tar lzippath
chdir
when :lha
safe_system lhapath, "x", cached_location

View File

@ -96,7 +96,7 @@ class Keg
alias generic_recursive_fgrep_args recursive_fgrep_args
def each_unique_file_matching(string)
Utils.popen_read("/usr/bin/fgrep", recursive_fgrep_args, string, to_s) do |io|
Utils.popen_read("fgrep", recursive_fgrep_args, string, to_s) do |io|
hardlinks = Set.new
until io.eof?
@ -113,7 +113,7 @@ class Keg
def text_files
text_files = []
return text_files unless File.exist?("/usr/bin/file")
return text_files unless which("file") && which("xargs")
# file has known issues with reading files on other locales. Has
# been fixed upstream for some time, but a sufficiently new enough
@ -132,7 +132,7 @@ class Keg
end
false
}
output, _status = Open3.capture2("/usr/bin/xargs -0 /usr/bin/file --no-dereference --print0",
output, _status = Open3.capture2("xargs -0 file --no-dereference --print0",
stdin_data: files.to_a.join("\0"))
# `file` output sometimes contains data from the file, which may include
# invalid UTF-8 entities, so tell Ruby this is just a bytestring

View File

@ -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
@ -344,7 +338,7 @@ def which_editor
editor = %w[atom subl mate edit vim].find do |candidate|
candidate if which(candidate, ENV["HOMEBREW_PATH"])
end
editor ||= "/usr/bin/vim"
editor ||= "vim"
opoo <<~EOS
Using #{editor} because no editor was set in the environment.
@ -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

View File

@ -3,7 +3,7 @@ require "open3"
def curl_executable
curl = Pathname.new ENV["HOMEBREW_CURL"]
curl = Pathname.new "/usr/bin/curl" unless curl.exist?
curl = which("curl") unless curl.exist?
return curl if curl.executable?
raise "#{curl} is not executable"
end