Skip to content

Commit

Permalink
Workaround for esl-erlang package issue (#3211)
Browse files Browse the repository at this point in the history
  • Loading branch information
to-bar authored Jul 7, 2022
1 parent 059ad6f commit 0229bc2
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,9 @@ def get_package_dependencies(self, package: str) -> List[str]:
dep = dep.split('Depends:')[-1] # remove "Depends:

if not virt_pkg and dep != package: # avoid adding package itself
# workaround for https://elixirforum.com/t/installing-erlang-elixir-on-ubuntu-20-04-is-failing-esl-erlang-25-0-2-1-ubuntu-focal-amd64-deb-file-has-unexpected-size/48754
# TODO: verify after issues 3210 and 3209 are fixed # pylint: disable=fixme
if dep != 'esl-erlang': # for rabbitmq-server
deps.append(dep)

return list(set(deps))

0 comments on commit 0229bc2

Please sign in to comment.