diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2021-09-14 15:38:35 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-14 15:38:35 -0400 |
commit | 16c27fce1ffd33081487aa21763c927d90c494ad (patch) | |
tree | f6f0994c022c05d62c668193a11f00064ef6f26b /runtime/ops/process.rs | |
parent | 1848f43aa1a2de0fabcde7970327baf37c177003 (diff) |
chore: bump crate versions for 0.14 (#12072)
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, |