diff --git a/imag-todo/src/main.rs b/imag-todo/src/main.rs index 00976a5f..96f8eafc 100644 --- a/imag-todo/src/main.rs +++ b/imag-todo/src/main.rs @@ -70,7 +70,7 @@ fn main() { for e in exec_string { args.push(e); } - let mut tw_process = Command::new("/usr/local/bin/task").stdin(Stdio::null()).args(&args).spawn().unwrap_or_else(|e| { + let mut tw_process = Command::new("task").stdin(Stdio::null()).args(&args).spawn().unwrap_or_else(|e| { panic!("failed to execute taskwarrior: {}", e); });