changed /usr/bin/local/task to task

This commit is contained in:
Yase 2016-06-13 11:15:02 +02:00
parent ba600f1fb2
commit f015223a8e
1 changed files with 1 additions and 1 deletions

View File

@ -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);
});