summaryrefslogtreecommitdiff
path: root/runtime/ops/process.rs
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/ops/process.rs')
-rw-r--r--runtime/ops/process.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/runtime/ops/process.rs b/runtime/ops/process.rs
index a15b63f80..cf8740255 100644
--- a/runtime/ops/process.rs
+++ b/runtime/ops/process.rs
@@ -107,7 +107,10 @@ deno_core::extension!(
deprecated::op_run,
deprecated::op_run_status,
deprecated::op_kill,
- ]
+ ],
+ customizer = |ext: &mut deno_core::ExtensionBuilder| {
+ ext.force_op_registration();
+ },
);
struct ChildResource(tokio::process::Child);