mirror of
https://codeberg.org/icewind/haze.git
synced 2026-06-03 17:14:08 +02:00
no hard error on resize
This commit is contained in:
parent
50af2de1b3
commit
86358698ed
1 changed files with 2 additions and 1 deletions
|
|
@ -51,7 +51,8 @@ pub async fn exec_tty<S1: AsRef<str>, S2: Into<String>>(
|
||||||
width: tty_size.0,
|
width: tty_size.0,
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
.await?;
|
.await
|
||||||
|
.ok();
|
||||||
|
|
||||||
// pipe stdin into the docker exec stream input
|
// pipe stdin into the docker exec stream input
|
||||||
spawn(async move {
|
spawn(async move {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue