Skip to content

Commit

Permalink
Update linker-wrapper.py
Browse files Browse the repository at this point in the history
  • Loading branch information
badboy authored and ncalexan committed Dec 4, 2024
1 parent 7f9b0f2 commit c997aad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugin/src/main/resources/com/nishtahir/linker-wrapper.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from __future__ import absolute_import, print_function, unicode_literals

import os
import pipes
import shlex
import subprocess
import sys

Expand Down Expand Up @@ -33,7 +33,7 @@ def update_in_place(arglist):


# This only appears when the subprocess call fails, but it's helpful then.
printable_cmd = " ".join(pipes.quote(arg) for arg in args)
printable_cmd = " ".join(shlex.quote(arg) for arg in args)
print(printable_cmd)

sys.exit(subprocess.call(args))

0 comments on commit c997aad

Please sign in to comment.