Skip to content
Snippets Groups Projects
Commit 3e63acad authored by Markus Reiter's avatar Markus Reiter
Browse files

Mention type checking documentation when `brew typecheck` fails.

parent 0e9b664d
No related branches found
No related tags found
No related merge requests found
......@@ -107,7 +107,12 @@ module Homebrew
srb_exec += ["--file", "../#{args.file}"] if args.file
srb_exec += ["--dir", "../#{args.dir}"] if args.dir
end
Homebrew.failed = !system(*srb_exec)
success = system(*srb_exec)
return if success
$stderr.puts "Check #{Formatter.url("https://docs.brew.sh/Typechecking")} for " \
"more information on how to resolve these errors."
Homebrew.failed = true
end
end
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment