Skip to content

Commit

Permalink
fix: sort task list (#431)
Browse files Browse the repository at this point in the history
Closes #429
  • Loading branch information
ruben-arts authored Nov 1, 2023
1 parent 4aa2ad2 commit 3ae32aa
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/cli/task.rs
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,7 @@ pub fn execute(args: Args) -> miette::Result<()> {
} else {
let formatted: String = tasks
.iter()
.sorted()
.map(|name| {
if args.summary {
format!("{} ", console::style(name))
Expand Down

0 comments on commit 3ae32aa

Please sign in to comment.