Hello,
I have noticed that the create_release_file-Method of the RepositoryBuilder (lines 910-913) write the Release-File entries in the wrong order.
" {:<path_width$} {:>size_width$} {}",
path,
size,
digest,
Instead of
" {:<path_width$} {:>size_width$} {}",
digest,
size,
path,
This unfortunately makes the generated repository unusable.
Hello,
I have noticed that the
create_release_file-Method of the RepositoryBuilder (lines 910-913) write the Release-File entries in the wrong order.Instead of
This unfortunately makes the generated repository unusable.