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.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/runtime/js/40_process.js b/runtime/js/40_process.js
index 543c53c27..782dfe476 100644
--- a/runtime/js/40_process.js
+++ b/runtime/js/40_process.js
@@ -102,6 +102,8 @@
cwd = undefined,
clearEnv = false,
env = {},
+ gid = undefined,
+ uid = undefined,
stdout = "inherit",
stderr = "inherit",
stdin = "inherit",
@@ -114,6 +116,8 @@
cwd,
clearEnv,
env: ObjectEntries(env),
+ gid,
+ uid,
stdin: isRid(stdin) ? "" : stdin,
stdout: isRid(stdout) ? "" : stdout,
stderr: isRid(stderr) ? "" : stderr,