feat(mise): add support for parallel job configuration in mise (#1548)

Co-authored-by: Gideon <87426140+GideonBear@users.noreply.github.com>
This commit is contained in:
Rubin Bhandari
2025-11-21 13:53:40 +05:45
committed by GitHub
parent ef3ee7bea7
commit f7c9e42066
3 changed files with 13 additions and 0 deletions

View File

@@ -871,6 +871,10 @@ pub fn run_mise(ctx: &ExecutionContext) -> Result<()> {
cmd.arg("--bump");
}
if ctx.config().mise_jobs() != 4 {
cmd.args(["--jobs", &ctx.config().mise_jobs().to_string()]);
}
cmd.status_checked()
}