Describe the bug
The tauri::process::Command API has a bug on the tokio mpsc usage: the stdout line is sent on the channel but the receiver only sees the message when the process is terminated.
To Reproduce
Steps to reproduce the behavior:
- Open the API example
- Click on the shell tab
- Run the following command: `node -e "console.log('message'); while(true){}"
- You'll see that the output is only seen when you click on the "kill" button
Expected behavior
The stdout line is seen immediately.
Describe the bug
The
tauri::process::CommandAPI has a bug on the tokio mpsc usage: the stdout line is sent on the channel but the receiver only sees the message when the process is terminated.To Reproduce
Steps to reproduce the behavior:
Expected behavior
The stdout line is seen immediately.