diff options
author | Divy Srivastava <dj.srivastava23@gmail.com> | 2024-03-04 22:05:44 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-04 16:35:44 +0000 |
commit | 5a28d70e05d9854102e983a4c4fd1cf4238361dc (patch) | |
tree | 0e040852085b0751c1eade3ba4c321d1b62e3017 /ext/node/polyfills/internal/child_process.ts | |
parent | 66500199350fd9e7a32e6fc10855654ffac01c49 (diff) |
fix(node): errno property when command missing (#22691)
Fixes https://github.com/denoland/deno/issues/22604
`remix dev` with Node adapter works:
```
$ ~/gh/littledivy/deno/target/debug/deno task dev
Task dev remix dev --manual
💿 remix dev
info building...
info built (619ms)
[remix-serve] http://localhost:3000 (http://192.168.1.24:3000)
GET / 200 - - 3.090 ms
```
Diffstat (limited to 'ext/node/polyfills/internal/child_process.ts')
-rw-r--r-- | ext/node/polyfills/internal/child_process.ts | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ext/node/polyfills/internal/child_process.ts b/ext/node/polyfills/internal/child_process.ts index 62de6a098..5a9212618 100644 --- a/ext/node/polyfills/internal/child_process.ts +++ b/ext/node/polyfills/internal/child_process.ts @@ -275,7 +275,11 @@ export class ChildProcess extends EventEmitter { }); })(); } catch (err) { - this.#_handleError(err); + let e = err; + if (e instanceof Deno.errors.NotFound) { + e = _createSpawnSyncError("ENOENT", command, args); + } + this.#_handleError(e); } } |