build: Remove a redundant message
If systemd-tmpfiles(8) couldn't be spawned, then the attempted command is already included in the traceback: Traceback (most recent call last): File "toolbox/meson_post_install.py", line 26, in <module> subprocess.run(['systemd-tmpfiles', '--create'], check=True) File "/usr/lib64/python3.10/subprocess.py", line 524, in run raise CalledProcessError(retcode, process.args, subprocess.CalledProcessError: Command '['systemd-tmpfiles', '--create']' returned non-zero exit status 73. https://github.com/containers/toolbox/pull/1122
This commit is contained in:
parent
a0569fdc3e
commit
01d3510141
1 changed files with 0 additions and 1 deletions
|
@ -22,7 +22,6 @@ import sys
|
|||
destdir = os.environ.get('DESTDIR', '')
|
||||
|
||||
if not destdir and not os.path.exists('/run/.containerenv'):
|
||||
print('Calling systemd-tmpfiles --create ...')
|
||||
subprocess.run(['systemd-tmpfiles', '--create'], check=True)
|
||||
|
||||
sys.exit(0)
|
||||
|
|
Loading…
Reference in a new issue