We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b94678c commit 7f9607dCopy full SHA for 7f9607d
1 file changed
bubbles-app/src/main.rs
@@ -338,6 +338,8 @@ impl AsyncFactoryComponent for VmEntry {
338
let image_disk_path = image_base_path.join("disk.img");
339
let image_linuz_path = image_base_path.join("vmlinuz");
340
let image_initrd_path = image_base_path.join("initrd.img");
341
+ let _ = tokio::fs::remove_file(&crosvm_socket_path).await;
342
+ let _ = tokio::fs::remove_file(&vsock_socket_path).await;
343
let socat_process = gtk::gio::Subprocess::newv(
344
&[
345
OsStr::new(Path::new(&env::var("HOME").expect("HOME var to be set")).join("bubbles/socat").as_os_str()),
0 commit comments