add 'wait' to the info output

This commit is contained in:
Dustin J. Mitchell 2021-05-23 18:23:37 -04:00 committed by Dustin J. Mitchell
parent e977fb294c
commit cf078e1233

View file

@ -36,6 +36,9 @@ pub(crate) fn execute<W: WriteColor>(
tags.sort();
t.add_row(row![b->"Tags", tags.join(" ")]);
}
if task.is_waiting() {
t.add_row(row![b->"Wait", task.get_wait().unwrap()]);
}
}
t.print(w)?;
}