mirror of
https://github.com/ParisNeo/lollms-webui.git
synced 2024-12-19 20:37:51 +00:00
fixed app
This commit is contained in:
parent
0bb3c2f884
commit
8f26f069ac
@ -199,13 +199,14 @@ async def open_code_folder_in_vs_code(request: OpenCodeFolderInVsCodeRequestMode
|
||||
f.write(request.code)
|
||||
|
||||
if os.path.isdir(root_folder):
|
||||
subprocess.run(['code', root_folder], check=True)
|
||||
path = '"'+str(root_folder)+'"'.replace("\\","/")
|
||||
subprocess.run(['code', path], shell=True)
|
||||
|
||||
|
||||
return {"status": True, "execution_time": 0}
|
||||
except Exception as ex:
|
||||
trace_exception(ex)
|
||||
lollmsElfServer.error(ex)
|
||||
lollmsElfServer.error(str(ex))
|
||||
return {"status":False,"error":"An error occurred during processing."}
|
||||
|
||||
class VSCodeData(BaseModel):
|
||||
|
Loading…
Reference in New Issue
Block a user