Browse Source

Do not die on a pkg etag cache write fail

We can probably still move ahead without a cache if we must
pull/1757/head
Fred Hebert 7 years ago
parent
commit
b46f56a158
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/rebar_pkg_resource.erl

+ 1
- 1
src/rebar_pkg_resource.erl View File

@ -231,4 +231,4 @@ maybe_store_etag_in_cache(true = _UpdateETag, Path, ETag) ->
store_etag_in_cache(Path, ETag).
store_etag_in_cache(Path, ETag) ->
ok = file:write_file(Path, ETag).
_ = file:write_file(Path, ETag).

Loading…
Cancel
Save