Skip to content

Commit f906104

Browse files
committed
Quote path to Python 3 executable in case it contains spaces
1 parent 7ac4c31 commit f906104

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

debuginfo-tests/lit.cfg.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def get_required_attr(config, attr_name):
9999
# Produce dexter path, lldb path, and combine into the %dexter substitution
100100
dexter_path = os.path.join(config.debuginfo_tests_src_root,
101101
'dexter', 'dexter.py')
102-
dexter_cmd = '{} {} test'.format(config.python3_executable, dexter_path)
102+
dexter_cmd = '"{}" "{}" test'.format(config.python3_executable, dexter_path)
103103
if lldb_path is not None:
104104
dexter_cmd += ' --lldb-executable {}'.format(lldb_path)
105105

0 commit comments

Comments
 (0)