Skip to content

Commit

Permalink
install tools in order listed in config file when --jobs=1 (#1587)
Browse files Browse the repository at this point in the history
* install tools in order listed in config file when --jobs=1

mise-plugins/mise-poetry#7

* fix lint task
  • Loading branch information
jdx authored Feb 2, 2024
1 parent 9e786e8 commit 57a6fa6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .mise/config.toml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
tasks.lint = "echo LINT!"
tasks.lint = "just lint"
1 change: 1 addition & 0 deletions src/toolset/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ impl Toolset {
let settings = Settings::try_get()?;
let queue: Vec<_> = versions
.into_iter()
.rev()
.group_by(|v| v.forge.clone())
.into_iter()
.map(|(fa, v)| (forge::get(&fa), v.collect_vec()))
Expand Down

0 comments on commit 57a6fa6

Please sign in to comment.