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 # Refuse to run on pre-Mavericks
if [[ "$HOMEBREW_MACOS_VERSION_NUMERIC" -lt "100900" ]] if [[ "$HOMEBREW_MACOS_VERSION_NUMERIC" -lt "100900" ]]
then 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" ]] if [[ "$HOMEBREW_MACOS_VERSION_NUMERIC" -lt "100700" ]]
then 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 fi
printf "\n" >&2 printf "\\n" >&2
fi fi
# The system Curl is too old for some modern HTTPS certificates on # The system Curl is too old for some modern HTTPS certificates on

View File

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

View File

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

View File

@ -12,7 +12,8 @@ module Homebrew
when :ppc when :ppc
abort <<~EOS abort <<~EOS
Sorry, Homebrew does not support your computer's CPU architecture. 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 EOS
end end
end end

View File

@ -34,7 +34,7 @@ class Migrator
super <<~EOS super <<~EOS
#{formula.name} from #{formula.tap} is given, but old name #{formula.oldname} was installed from #{tap || "path or url"}. #{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 EOS
end end
end end