Label type Exec has command, not exec

This commit is contained in:
galister
2024-02-29 17:30:59 +01:00
parent 30399f1d57
commit 2518c61b22

View File

@@ -52,7 +52,7 @@ pub enum LabelData {
Exec {
last_exec: Instant,
interval: f32,
exec: Vec<Arc<str>>,
command: Vec<Arc<str>>,
child: Option<process::Child>,
},
}