We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74097b7 commit a7f4416Copy full SHA for a7f4416
cli/cloe_launch/binutils.py
@@ -28,6 +28,7 @@ def patch_rpath(file: Path, rpath: List[str]) -> Optional[subprocess.CompletedPr
28
logging.error(f"Error running: {' '.join(cmd)}")
29
logging.error(result.stderr)
30
original = result.stdout.decode().strip()
31
+ rpath = rpath.copy()
32
if original != "":
33
rpath.append(original)
34
0 commit comments