diff options
Diffstat (limited to 'runtime/ops/process.rs')
-rw-r--r-- | runtime/ops/process.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/ops/process.rs b/runtime/ops/process.rs index 86ad292b8..75d9cfdc9 100644 --- a/runtime/ops/process.rs +++ b/runtime/ops/process.rs @@ -27,7 +27,7 @@ use tokio::process::Command; use std::os::unix::process::ExitStatusExt; pub fn init() -> Extension { - Extension::builder() + Extension::builder("deno_process") .ops(vec![op_run::decl(), op_run_status::decl(), op_kill::decl()]) .build() } |