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 { Exec {
last_exec: Instant, last_exec: Instant,
interval: f32, interval: f32,
exec: Vec<Arc<str>>, command: Vec<Arc<str>>,
child: Option<process::Child>, child: Option<process::Child>,
}, },
} }