Skip to content

Commit c997aad

Browse files
badboyncalexan
authored andcommitted
Update linker-wrapper.py
1 parent 7f9b0f2 commit c997aad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

plugin/src/main/resources/com/nishtahir/linker-wrapper.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from __future__ import absolute_import, print_function, unicode_literals
22

33
import os
4-
import pipes
4+
import shlex
55
import subprocess
66
import sys
77

@@ -33,7 +33,7 @@ def update_in_place(arglist):
3333

3434

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

3939
sys.exit(subprocess.call(args))

0 commit comments

Comments
 (0)