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