Bladeren bron

io_lib:format/2 will throw badarg when trying to print rebar_resource:resource() as string

pull/445/head
Stefan Grundmann 10 jaren geleden
bovenliggende
commit
b9778401c2
1 gewijzigde bestanden met toevoegingen van 1 en 1 verwijderingen
  1. +1
    -1
      src/rebar_fetch.erl

+ 1
- 1
src/rebar_fetch.erl Bestand weergeven

@ -72,7 +72,7 @@ format_error({failed_extract, CachePath}) ->
format_error({bad_etag, Source}) ->
io_lib:format("MD5 Checksum comparison failed for: ~s", [Source]);
format_error({fetch_fail, Source}) ->
io_lib:format("Failed to fetch and copy dep: ~s", [Source]);
io_lib:format("Failed to fetch and copy dep: ~p", [Source]);
format_error({bad_checksum, File}) ->
io_lib:format("Checksum mismatch against tarball in ~s", [File]);
format_error({bad_registry_checksum, File}) ->

Laden…
Annuleren
Opslaan