whitespace fixes

This commit is contained in:
EricFromCanada 2019-04-01 16:02:13 -04:00
parent 15c38a2d8b
commit 89f0fcedbe
19 changed files with 43 additions and 42 deletions

View File

@ -100,12 +100,12 @@ then
# Refuse to run on pre-Mavericks
if [[ "$HOMEBREW_MACOS_VERSION_NUMERIC" -lt "100900" ]]
then
printf "ERROR: Your version of macOS (%s) is too old to run Homebrew!" "$HOMEBREW_MACOS_VERSION" >&2
printf "ERROR: Your version of macOS (%s) is too old to run Homebrew!\\n" "$HOMEBREW_MACOS_VERSION" >&2
if [[ "$HOMEBREW_MACOS_VERSION_NUMERIC" -lt "100700" ]]
then
printf " For 10.4 - 10.6 support see: https://github.com/mistydemeo/tigerbrew\n" >&2
printf " For 10.4 - 10.6 support see: https://github.com/mistydemeo/tigerbrew\\n" >&2
fi
printf "\n" >&2
printf "\\n" >&2
fi
# The system Curl is too old for some modern HTTPS certificates on

View File

@ -152,8 +152,8 @@ EOSCRIPT
odie <<EOS
Checksum mismatch.
Expected: $VENDOR_SHA
Actual: $sha
Archive: $CACHED_LOCATION
Actual: $sha
Archive: $CACHED_LOCATION
To retry an incomplete download, remove the file above.
EOS
fi

View File

@ -70,7 +70,7 @@ module Homebrew
end
puts "Start commit: #{start_commit}"
puts "End commit: #{end_commit}"
puts " End commit: #{end_commit}"
mkdir "update-test"
chdir "update-test" do

View File

@ -12,7 +12,8 @@ module Homebrew
when :ppc
abort <<~EOS
Sorry, Homebrew does not support your computer's CPU architecture.
For PPC support, see: https://github.com/mistydemeo/tigerbrew
For PPC support, see:
#{Formatter.url("https://github.com/mistydemeo/tigerbrew")}
EOS
end
end

View File

@ -34,7 +34,7 @@ class Migrator
super <<~EOS
#{formula.name} from #{formula.tap} is given, but old name #{formula.oldname} was installed from #{tap || "path or url"}.
#{msg}To force migrate use `brew migrate --force #{formula.oldname}`.
#{msg}To force migration use `brew migrate --force #{formula.oldname}`.
EOS
end
end