1
0
Fork 0
mirror of https://github.com/engineer-man/piston.git synced 2025-05-08 04:46:32 +02:00

pkg(iverilog-11.0.0): Added iverilog 11.0.0

This commit is contained in:
Brikaa 2021-09-26 13:25:13 +02:00
parent 0077da59cb
commit 56a3c91a6a
10 changed files with 47 additions and 7 deletions
api/src/api

View file

@ -146,7 +146,7 @@ router.ws('/connect', async (ws, req) => {
eventBus.on("exit", (stage, status) => ws.send(JSON.stringify({type: "exit", stage, ...status})))
ws.on("message", async (data) => {
try{
const msg = JSON.parse(data);
@ -194,7 +194,7 @@ router.ws('/connect', async (ws, req) => {
}
break;
}
}catch(error){
ws.send(JSON.stringify({type: "error", message: error.message}))
ws.close(4002, "Notified Error")