Skip to content

Commit eccf1e9

Browse files
authored
fix(cargo-shuttle): windows build (#2116)
1 parent 7c06bc2 commit eccf1e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cargo-shuttle/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1588,7 +1588,7 @@ impl Shuttle {
15881588
let mut ctrl_shutdown_notif = tokio::signal::windows::ctrl_shutdown()
15891589
.expect("Can not get the CtrlShutdown signal receptor");
15901590
tokio::select! {
1591-
exit_result = runtime.wait() => {
1591+
exit_result = child.wait() => {
15921592
Some(exit_result)
15931593
}
15941594
_ = ctrl_break_notif.recv() => {

0 commit comments

Comments
 (0)