summaryrefslogtreecommitdiff
path: root/cli/ops/process.rs
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2020-01-12 10:21:53 +0100
committerGitHub <noreply@github.com>2020-01-12 10:21:53 +0100
commit8fac8ab130b3cb8a93d7e0e37fa1ea6ea4cc2e4a (patch)
tree8174a64c41202c63a3f76f17f6f0f4d3a775e75c /cli/ops/process.rs
parent1ea06f9c847ac7254138c91de2b2b9f72662e164 (diff)
upgrade: tokio 0.2.9, reqwest 0.10.1 (#3653)
Diffstat (limited to 'cli/ops/process.rs')
-rw-r--r--cli/ops/process.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/cli/ops/process.rs b/cli/ops/process.rs
index 8f724fd75..30de5a735 100644
--- a/cli/ops/process.rs
+++ b/cli/ops/process.rs
@@ -135,7 +135,7 @@ fn op_run(
let mut table = state_.lock_resource_table();
- let stdin_rid = match child.stdin().take() {
+ let stdin_rid = match child.stdin.take() {
Some(child_stdin) => {
let rid = table.add(
"childStdin",
@@ -146,7 +146,7 @@ fn op_run(
None => None,
};
- let stdout_rid = match child.stdout().take() {
+ let stdout_rid = match child.stdout.take() {
Some(child_stdout) => {
let rid = table.add(
"childStdout",
@@ -157,7 +157,7 @@ fn op_run(
None => None,
};
- let stderr_rid = match child.stderr().take() {
+ let stderr_rid = match child.stderr.take() {
Some(child_stderr) => {
let rid = table.add(
"childStderr",