Quellcode durchsuchen

Fix support for `not_valid` dialyzer error

pull/1279/head
Guillaume Bour vor 9 Jahren
Ursprung
Commit
ffe5e42521
1 geänderte Dateien mit 3 neuen und 0 gelöschten Zeilen
  1. +3
    -0
      src/rebar_prv_dialyzer.erl

+ 3
- 0
src/rebar_prv_dialyzer.erl Datei anzeigen

@ -260,6 +260,9 @@ read_plt(_State, Plt) ->
Result;
{error, no_such_file} ->
error;
{error, not_valid} ->
Error = io_lib:format("Could not read the PLT file ~p", [Plt]),
throw({dialyzer_error, Error});
{error, read_error} ->
Error = io_lib:format("Could not read the PLT file ~p", [Plt]),
throw({dialyzer_error, Error})

Laden…
Abbrechen
Speichern