Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b317e06

Browse files
committed
Add the ZArith errors to the black-listing
1 parent 181d4af commit b317e06

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

status.rb

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,10 @@ def initialize(name, version, status, dry_without_coq_output, deps_output, packa
2323
with_download_error = [deps_output, package_output].any? do |output|
2424
output.include?(download_error_message)
2525
end
26+
zarith_reinstall_error_message = "ocamlfind: Package zarith is already installed"
27+
with_zarith_reinstall_error = deps_output.include?(zarith_reinstall_error_message)
2628
@status =
27-
black_listed || with_dependencies_resolution_timeout || with_download_error ?
29+
black_listed || with_dependencies_resolution_timeout || with_download_error || with_zarith_reinstall_error ?
2830
"BlackList" :
2931
status
3032
end

0 commit comments

Comments
 (0)