Skip to content

Commit

Permalink
fix(explain_manifest): fix behavior change or API after version bump (#…
Browse files Browse the repository at this point in the history
…13721)

Regression from #13639
  • Loading branch information
fffonion authored Sep 29, 2024
1 parent 695e8ec commit 778fe08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/explain_manifest/explain.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ def __init__(self, path, relpath):
if d.tag == lief._lief.ELF.DynamicEntry.TAG.NEEDED:
self.needed_libraries.append(d.name)
elif d.tag == lief._lief.ELF.DynamicEntry.TAG.RPATH:
self.rpath = d.runpath
self.rpath = d.rpath
elif d.tag == lief._lief.ELF.DynamicEntry.TAG.RUNPATH:
self.runpath = d.runpath

Expand Down

1 comment on commit 778fe08

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bazel Build

Docker image available kong/kong:778fe086a1f46f44987dc17c984c3c0581996cbb
Artifacts available https://github.com/Kong/kong/actions/runs/11091692956

Please sign in to comment.