fix(bpapi): Fix comparison of releases during compatibility check

This commit is contained in:
ieQu1 2024-03-28 11:21:30 +01:00
parent db9efb9317
commit 02b72d79fc
No known key found for this signature in database
GPG Key ID: 488654DF3FED6FDE
1 changed files with 1 additions and 1 deletions

View File

@ -111,7 +111,7 @@ check_compat(DumpFilenames) ->
Dumps = lists:map(
fun(FN) ->
{ok, [Dump]} = file:consult(FN),
Dump
Dump#{release => filename:basename(FN)}
end,
DumpFilenames
),