Skip to content

Commit

Permalink
fix another code error
Browse files Browse the repository at this point in the history
  • Loading branch information
truib committed Nov 14, 2024
1 parent 29004ce commit cf076be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eb_hooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -979,7 +979,7 @@ def pre_package_eessi_extend(self, *args, **kwargs):
for root, _, files in os.walk(self.installdir):
dir_tree.append(root)
for f in files:
tree.append(os.path.join(root, f))
dir_tree.append(os.path.join(root, f))
for entry in dir_tree:
print(entry)
os.stat(entry)
Expand Down

0 comments on commit cf076be

Please sign in to comment.