Unique sidecar names

This commit is contained in:
Gregory Schier
2024-07-24 07:04:14 -07:00
parent 55e33df8d6
commit 311fda887f
4 changed files with 20 additions and 20 deletions

View File

@@ -67,11 +67,11 @@ pub async fn fill_pool_from_files(
let (mut rx, _child) = app_handle
.shell()
.sidecar("protoc")
.expect("protoc not found")
.sidecar("yaakprotoc")
.expect("yaakprotoc not found")
.args(args)
.spawn()
.expect("protoc failed to start");
.expect("yaakprotoc failed to start");
while let Some(event) = rx.recv().await {
match event {