Skip to content

Commit 8d00f07

Browse files
committed
Fix Windows parsing
1 parent 8c847d5 commit 8d00f07

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bench_runner/scripts/workflow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ def compile_windows(
190190
if "TAILCALL" in flags:
191191
args.append("--tail-call-interp")
192192
if configure_flags := os.environ.get("PYTHON_CONFIGURE_FLAGS"):
193-
args.extend(shlex.split(configure_flags))
193+
args.append(configure_flags)
194194

195195
with contextlib.chdir(cpython):
196196
subprocess.check_call(

0 commit comments

Comments
 (0)