diff options
author | 2023-04-28 09:17:06 -0700 | |
---|---|---|
committer | 2023-04-28 09:17:06 -0700 | |
commit | ef894c57cfb864609455058e7834064797797302 (patch) | |
tree | 1e15b074e723e07d8a9f6a4d4fda42f43dc2be59 | |
parent | 5734889cc746ca70c8d8d4540e8fc4c168ab5ec6 (diff) | |
download | bun-ef894c57cfb864609455058e7834064797797302.tar.gz bun-ef894c57cfb864609455058e7834064797797302.tar.zst bun-ef894c57cfb864609455058e7834064797797302.zip |
Fix typo in runner
-rw-r--r-- | scripts/bun-test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/bun-test.ts b/scripts/bun-test.ts index a88535634..f0522a56f 100644 --- a/scripts/bun-test.ts +++ b/scripts/bun-test.ts @@ -357,7 +357,7 @@ function print(buffer: string | Uint8Array) { } } catch (error) { // @ts-ignore - if (e.code === "EAGAIN") { + if (error.code === "EAGAIN") { continue; } throw error; |