mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-04-01 21:13:09 +00:00
Fixes/recover dying during starting (#1224)
* fix: Fix the panic becaues of the double install logging Co-authored-by: Aiden McClelland <dr-bonez@users.noreply.github.com> * fix: Clippy fix for docker * chore: Add notification on top of error Co-authored-by: Aiden McClelland <dr-bonez@users.noreply.github.com>
This commit is contained in:
@@ -152,7 +152,7 @@ impl DockerAction {
|
||||
} else {
|
||||
EitherFuture::Left(futures::future::pending::<Result<_, Error>>())
|
||||
};
|
||||
if let (Some(input), Some(stdin)) = (&input_buf, &mut handle.stdin) {
|
||||
if let (Some(input), Some(mut stdin)) = (&input_buf, handle.stdin.take()) {
|
||||
use tokio::io::AsyncWriteExt;
|
||||
stdin
|
||||
.write_all(input)
|
||||
|
||||
Reference in New Issue
Block a user