changed /usr/bin/local/task to task
This commit is contained in:
parent
ba600f1fb2
commit
f015223a8e
1 changed files with 1 additions and 1 deletions
|
@ -70,7 +70,7 @@ fn main() {
|
||||||
for e in exec_string {
|
for e in exec_string {
|
||||||
args.push(e);
|
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);
|
panic!("failed to execute taskwarrior: {}", e);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue