Fix typo in runner

This commit is contained in:
Ashcon Partovi
2023-04-28 09:17:06 -07:00
parent 5734889cc7
commit ef894c57cf

View File

@@ -357,7 +357,7 @@ function print(buffer: string | Uint8Array) {
}
} catch (error) {
// @ts-ignore
if (e.code === "EAGAIN") {
if (error.code === "EAGAIN") {
continue;
}
throw error;