summaryrefslogtreecommitdiff
path: root/runtime/js/40_process.js
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/js/40_process.js')
-rw-r--r--runtime/js/40_process.js6
1 files changed, 0 insertions, 6 deletions
diff --git a/runtime/js/40_process.js b/runtime/js/40_process.js
index 0f28b9d5c..b2269ffd6 100644
--- a/runtime/js/40_process.js
+++ b/runtime/js/40_process.js
@@ -133,10 +133,7 @@ class Process {
function run({
cmd,
cwd = undefined,
- clearEnv = false,
env = { __proto__: null },
- gid = undefined,
- uid = undefined,
stdout = "inherit",
stderr = "inherit",
stdin = "inherit",
@@ -155,10 +152,7 @@ function run({
const res = opRun({
cmd: ArrayPrototypeMap(cmd, String),
cwd,
- clearEnv,
env: ObjectEntries(env),
- gid,
- uid,
stdin,
stdout,
stderr,