We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 58ad041 commit 6b23fb5Copy full SHA for 6b23fb5
mikazuki/app.py
@@ -93,7 +93,16 @@ async def run_script(request: Request, background_tasks: BackgroundTasks):
93
if script_name not in avaliable_scripts:
94
return {"status": "fail"}
95
del j["script_name"]
96
- cmd = script_name + ' ' + ' '.join(f'--{k} {v}' for k, v in j.items())
+ 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}"
106
background_tasks.add_task(utils.run, cmd)
107
return {"status": "success"}
108
0 commit comments