Skip to content

Commit

Permalink
Fix typo in LD_LIBRARY_PATH in directory unpacker
Browse files Browse the repository at this point in the history
  • Loading branch information
remram44 committed Apr 14, 2022
1 parent 8904cc7 commit ddb0896
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reprounzip/reprounzip/unpackers/default.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ def directory_run(args):
unicode_(join_root(root,
Path(run['workingdir']))))
cmd += '/usr/bin/env -i '
cmd += 'LD_LIBRARY_PATH=%s' % ':'.join(
cmd += 'LD_LIBRARY_PATH=%s ' % ':'.join(
shell_escape(unicode_(join_root(root, d)))
for d in lib_dirs
)
Expand Down

0 comments on commit ddb0896

Please sign in to comment.