remove dbg!

This commit is contained in:
Keagan McClelland
2021-09-20 11:32:57 -06:00
parent 6fc8567c91
commit 66ff38688e

View File

@@ -68,7 +68,7 @@ impl DockerAction {
};
cmd.stdout(std::process::Stdio::piped());
cmd.stderr(std::process::Stdio::piped());
let mut handle = dbg!(cmd).spawn().with_kind(crate::ErrorKind::Docker)?;
let mut handle = cmd.spawn().with_kind(crate::ErrorKind::Docker)?;
if let (Some(input), Some(stdin)) = (&input_buf, &mut handle.stdin) {
use tokio::io::AsyncWriteExt;
stdin