From 07f8dd19a4e8972b7bf5f3fee8ffa7c5709dccf2 Mon Sep 17 00:00:00 2001 From: Raboneko <119771935+raboneko@users.noreply.github.com> Date: Wed, 19 Nov 2025 02:58:51 -0800 Subject: [PATCH] fix(andax/bump_extras.rhai): Return the correct branch for Rawhide on Bodhi functions (#7455) (#7478) (cherry picked from commit 6bb19fa5c38c194b6944284b5c61a8880f46d644) 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 d994f39c3f..161e81166b 100644 --- a/andax/bump_extras.rhai +++ b/andax/bump_extras.rhai @@ -14,7 +14,7 @@ fn as_bodhi_ver(branch) { } return `EPEL-${release}`; } else if branch == "frawhide" { - return "F43"; + return "F44"; } else if branch.starts_with("f") { branch.crop(1); return `F${branch}`;