Skip to content

Commit

Permalink
Adding management of extending files
Browse files Browse the repository at this point in the history
Signed-off-by: Felix Rubio <[email protected]>
  • Loading branch information
flixman committed Nov 29, 2024
1 parent f582319 commit ad22ecd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion podman_compose.py
Original file line number Diff line number Diff line change
Expand Up @@ -1337,7 +1337,7 @@ def rec_deps(services, service_name, start_point=None):
ext = srv.get("extends", {}).get("service", None)
if ext:
if ext != name:
deps.add(ext)
deps.add(ServiceDependency(ext))
continue
deps_ls = srv.get("depends_on", [])
if isinstance(deps_ls, str):
Expand Down

0 comments on commit ad22ecd

Please sign in to comment.