Skip to content

Commit

Permalink
Merge pull request #4491 from branfosj/hidden
Browse files Browse the repository at this point in the history
hide readelf output
  • Loading branch information
Micket authored Apr 2, 2024
2 parents 1df8073 + f2ed0ff commit 5dac63e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion easybuild/framework/easyblock.py
Original file line number Diff line number Diff line change
Expand Up @@ -3187,7 +3187,7 @@ def sanity_check_rpath(self, rpath_dirs=None, check_readelf_rpath=True):
# check whether RPATH section in 'readelf -d' output is there
if check_readelf_rpath:
fail_msg = None
res = run_shell_cmd(f"readelf -d {path}", fail_on_error=False)
res = run_shell_cmd(f"readelf -d {path}", fail_on_error=False, hidden=True)
if res.exit_code:
fail_msg = f"Failed to run 'readelf -d {path}': {res.output}"
elif not readelf_rpath_regex.search(res.output):
Expand Down

0 comments on commit 5dac63e

Please sign in to comment.