From b5ae2f650005bd8b074103d8296fa902b6477ef4 Mon Sep 17 00:00:00 2001 From: Raboneko <119771935+raboneko@users.noreply.github.com> Date: Mon, 8 Dec 2025 10:12:41 -0800 Subject: [PATCH] fix(andax/bump_extras.rhai): Add repo field to `alma` (#8185) (#8196) I realized I forgot to add this here too right after it was merged, fixing it now. (cherry picked from commit 49cde2ab3adbbe8c454b8d23c2fd0a87dbe201a2) Signed-off-by: Gilver Co-authored-by: Gilver --- andax/bump_extras.rhai | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/andax/bump_extras.rhai b/andax/bump_extras.rhai index 92d6ef46c7..b29fdfc703 100644 --- a/andax/bump_extras.rhai +++ b/andax/bump_extras.rhai @@ -24,7 +24,7 @@ fn alma_vr(pkg, repo, branch) { } } -fn alma(pkg, branch) { +fn alma(pkg, repo, branch) { let vr = alma_vr(pkg, repo, branch); return(vr[1]); }