From 324c09d19f9e49e4daa352f9cea1e715f125d279 Mon Sep 17 00:00:00 2001 From: Bojan Serafimov Date: Thu, 18 Aug 2022 15:17:30 -0400 Subject: [PATCH] Cleanup --- libs/utils/src/output_capture.rs | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 libs/utils/src/output_capture.rs diff --git a/libs/utils/src/output_capture.rs b/libs/utils/src/output_capture.rs deleted file mode 100644 index 67d6e4bf88..0000000000 --- a/libs/utils/src/output_capture.rs +++ /dev/null @@ -1,10 +0,0 @@ -use std::{os::unix::prelude::CommandExt, process::Command}; - - - -/// Command with ability to capture stdout and stderr to files -trait CaptureOutputToFile: CommandExt { - fn capture_to_file(&mut self) -> &mut Command; -} - -impl CaptureOutputToFile