Skip to content

Commit 6b23fb5

Browse files
committed
fix
1 parent 58ad041 commit 6b23fb5

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

mikazuki/app.py

+10-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,16 @@ async def run_script(request: Request, background_tasks: BackgroundTasks):
9393
if script_name not in avaliable_scripts:
9494
return {"status": "fail"}
9595
del j["script_name"]
96-
cmd = script_name + ' ' + ' '.join(f'--{k} {v}' for k, v in j.items())
96+
result = []
97+
for k, v in j.items():
98+
result.append(f"--{k}")
99+
if not isinstance(v, bool):
100+
value = str(v)
101+
if " " in value:
102+
value = f'"{v}"'
103+
result.append(value)
104+
script_args = " ".join(result)
105+
cmd = f"{utils.python_bin} {script_name} {script_args}"
97106
background_tasks.add_task(utils.run, cmd)
98107
return {"status": "success"}
99108

0 commit comments

Comments
 (0)