We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c850c7d commit 8f40a6eCopy full SHA for 8f40a6e
java/ql/src/Stubs/make_stubs.py
@@ -5,6 +5,7 @@
5
import subprocess
6
import json
7
import glob
8
+import shlex
9
from shutil import copyfile
10
11
def print_usage(exit_code=1):
@@ -79,7 +80,7 @@ def print_javac_output():
79
80
81
def run(cmd):
82
"""Runs the given command, returning the exit code (nonzero on failure)"""
- print('\nRunning ' + ' '.join(cmd) + '\n')
83
+ print('\nRunning: ' + shlex.join(cmd) + '\n')
84
return subprocess.call(cmd)
85
86
print("Stubbing qltest in", testDir)
0 commit comments