diff options
Diffstat (limited to 'runtime/ops/process.rs')
-rw-r--r-- | runtime/ops/process.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/runtime/ops/process.rs b/runtime/ops/process.rs index e40a15b4b..581bd4bb2 100644 --- a/runtime/ops/process.rs +++ b/runtime/ops/process.rs @@ -63,7 +63,9 @@ pub struct RunArgs { cwd: Option<String>, clear_env: bool, env: Vec<(String, String)>, + #[cfg(unix)] gid: Option<u32>, + #[cfg(unix)] uid: Option<u32>, stdin: String, stdout: String, |